go(commands): add commands to list git branch
This commit is contained in:
parent
77cd6aac14
commit
10544e1c2d
18
go/commands/git.go
Normal file
18
go/commands/git.go
Normal file
@ -0,0 +1,18 @@
|
||||
package commands
|
||||
|
||||
import (
|
||||
"ocl/portainer-devtool/utils"
|
||||
"os/exec"
|
||||
)
|
||||
|
||||
func ListBranches(workdir string) error {
|
||||
cmd := exec.Command("git", "branch")
|
||||
cmd.Dir = workdir
|
||||
out, err := cmd.Output()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
utils.PrintOutput("Your current checkout branch", out)
|
||||
return nil
|
||||
}
|
Loading…
Reference in New Issue
Block a user