-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo.go
66 lines (53 loc) · 1.24 KB
/
repo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package main
import (
"os"
"os/exec"
"path"
)
// Repo contains information about a git repository.
type Repo struct {
os.DirEntry
// Path is the relative path to the repo from the working dir.
Path string
}
// Repos returns all git repositories present in a directory.
func Repos(dir string, current int, depth int) ([]Repo, error) {
items, err := os.ReadDir(dir)
if err != nil {
return nil, err
}
var repos []Repo
for _, item := range items {
if !item.IsDir() {
continue
}
pathName := path.Join(dir, item.Name())
_, err := os.Stat(path.Join(pathName, ".git"))
if err != nil {
if os.IsNotExist(err) {
continue
}
return nil, err
}
repos = append(repos, Repo{item, pathName})
}
if current < depth {
for _, repo := range repos {
nested, err := Repos(repo.Path, current+1, depth)
if err != nil {
return nil, err
}
repos = append(repos, nested...)
}
}
return repos, nil
}
// Command runs a git command inside a repository.
func (r Repo) Command(commands []string, dir string, color bool) ([]byte, error) {
if color {
commands = append([]string{"-c", "color.ui=always"}, commands...)
}
cmd := exec.Command("git", commands...)
cmd.Dir = path.Join(dir, r.Path)
return cmd.CombinedOutput()
}