git-bug/commands/push.go

44 lines
718 B
Go
Raw Normal View History

package commands
2018-07-12 10:55:13 +03:00
import (
"errors"
2020-06-28 19:26:29 +03:00
"github.com/spf13/cobra"
2018-07-12 10:55:13 +03:00
)
2020-06-28 19:26:29 +03:00
func newPushCommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
Use: "push [REMOTE]",
Short: "Push bugs update to a git remote.",
PreRunE: loadBackend(env),
PostRunE: closeBackend(env),
2020-06-28 19:26:29 +03:00
RunE: func(cmd *cobra.Command, args []string) error {
return runPush(env, args)
},
}
return cmd
}
func runPush(env *Env, args []string) error {
2018-07-12 10:55:13 +03:00
if len(args) > 1 {
return errors.New("Only pushing to one remote at a time is supported")
2018-07-12 10:55:13 +03:00
}
remote := "origin"
if len(args) == 1 {
remote = args[0]
}
stdout, err := env.backend.Push(remote)
2018-08-12 22:09:30 +03:00
if err != nil {
2018-07-12 10:55:13 +03:00
return err
}
2020-06-28 19:26:29 +03:00
env.out.Println(stdout)
2018-08-12 22:09:30 +03:00
2018-07-12 10:55:13 +03:00
return nil
}