diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-12 09:55:13 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-12 09:55:13 +0200 |
commit | d0443659123f912e9385e27efebe4b7da65aa2f6 (patch) | |
tree | 090a36d2618ecff259cbcabd501d33d460d1cd7a /commands/push.go | |
parent | a85730cf5287d40a1e32d3a671ba2296c73387cb (diff) | |
download | git-bug-d0443659123f912e9385e27efebe4b7da65aa2f6.tar.gz |
more experiment
Diffstat (limited to 'commands/push.go')
-rw-r--r-- | commands/push.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/commands/push.go b/commands/push.go new file mode 100644 index 00000000..4465f561 --- /dev/null +++ b/commands/push.go @@ -0,0 +1,33 @@ +package commands + +import ( + "fmt" + "github.com/MichaelMure/git-bug/repository" + "errors" +) + +func push(repo repository.Repo, args []string) error { + if len(args) > 1 { + return errors.New("only pushing to one remote at a time is supported") + } + + remote := "origin" + if len(args) == 1 { + remote = args[0] + } + + if err := repo.PushRefs(remote, bugsRefPattern); err != nil { + return err + } + return nil +} + +// showCmd defines the "push" subcommand. +var pushCmd = &Command{ + Usage: func(arg0 string) { + fmt.Printf("Usage: %s push [<remote>]\n", arg0) + }, + RunMethod: func(repo repository.Repo, args []string) error { + return push(repo, args) + }, +}
\ No newline at end of file |