aboutsummaryrefslogtreecommitdiffstats
path: root/commands/push.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-12 09:55:13 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-12 09:55:13 +0200
commitd0443659123f912e9385e27efebe4b7da65aa2f6 (patch)
tree090a36d2618ecff259cbcabd501d33d460d1cd7a /commands/push.go
parenta85730cf5287d40a1e32d3a671ba2296c73387cb (diff)
downloadgit-bug-d0443659123f912e9385e27efebe4b7da65aa2f6.tar.gz
more experiment
Diffstat (limited to 'commands/push.go')
-rw-r--r--commands/push.go33
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