added global git command args support (#14)

This commit is contained in:
Lunny Xiao 2016-11-17 23:06:05 +08:00 коммит произвёл GitHub
Родитель c7ee07aae6
Коммит 9122f8a845
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -13,6 +13,11 @@ import (
"time"
)
var (
// GlobalCommandArgs global command args for external package setting
GlobalCommandArgs []string
)
// Command represents a command with its subcommands or arguments.
type Command struct {
name string
@ -30,7 +35,7 @@ func (c *Command) String() string {
func NewCommand(args ...string) *Command {
return &Command{
name: "git",
args: args,
args: append(GlobalCommandArgs, args...),
}
}