2018-07-12 13:44:46 +03:00
|
|
|
package commands
|
2018-07-12 10:55:13 +03:00
|
|
|
|
|
|
|
import (
|
2018-07-12 13:44:46 +03:00
|
|
|
"errors"
|
2020-06-28 19:26:29 +03:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2022-09-10 12:09:19 +03:00
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/commands/completion"
|
|
|
|
"github.com/MichaelMure/git-bug/commands/execenv"
|
2018-07-12 10:55:13 +03:00
|
|
|
)
|
|
|
|
|
2020-06-28 19:26:29 +03:00
|
|
|
func newPushCommand() *cobra.Command {
|
2022-09-10 12:09:19 +03:00
|
|
|
env := execenv.NewEnv()
|
2020-06-28 19:26:29 +03:00
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
2021-05-09 12:33:20 +03:00
|
|
|
Use: "push [REMOTE]",
|
2022-09-10 12:09:19 +03:00
|
|
|
Short: "Push updates to a git remote",
|
|
|
|
PreRunE: execenv.LoadBackend(env),
|
|
|
|
RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error {
|
2020-06-28 19:26:29 +03:00
|
|
|
return runPush(env, args)
|
2021-05-09 12:33:20 +03:00
|
|
|
}),
|
2022-09-10 12:09:19 +03:00
|
|
|
ValidArgsFunction: completion.GitRemote(env),
|
2020-06-28 19:26:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2022-09-10 12:09:19 +03:00
|
|
|
func runPush(env *execenv.Env, args []string) error {
|
2018-07-12 10:55:13 +03:00
|
|
|
if len(args) > 1 {
|
2018-07-12 13:44:46 +03:00
|
|
|
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]
|
|
|
|
}
|
|
|
|
|
2022-09-10 12:09:19 +03:00
|
|
|
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
|
|
|
|
}
|
2018-07-23 01:04:46 +03:00
|
|
|
|
2022-09-10 12:09:19 +03:00
|
|
|
env.Out.Println(stdout)
|
2018-08-12 22:09:30 +03:00
|
|
|
|
2018-07-12 10:55:13 +03:00
|
|
|
return nil
|
|
|
|
}
|