From d0443659123f912e9385e27efebe4b7da65aa2f6 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 12 Jul 2018 09:55:13 +0200 Subject: more experiment --- commands/push.go | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 commands/push.go (limited to 'commands/push.go') 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 []\n", arg0) + }, + RunMethod: func(repo repository.Repo, args []string) error { + return push(repo, args) + }, +} \ No newline at end of file -- cgit