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"
|
2018-08-12 22:09:30 +03:00
|
|
|
"fmt"
|
|
|
|
|
2018-08-31 14:18:03 +03:00
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
2018-10-25 00:36:39 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
2018-07-19 13:30:25 +03:00
|
|
|
"github.com/spf13/cobra"
|
2018-07-12 10:55:13 +03:00
|
|
|
)
|
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
func runPush(cmd *cobra.Command, 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]
|
|
|
|
}
|
|
|
|
|
2018-08-31 14:18:03 +03:00
|
|
|
backend, err := cache.NewRepoCache(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer backend.Close()
|
2018-10-25 00:36:39 +03:00
|
|
|
interrupt.RegisterCleaner(backend.Close)
|
2018-08-31 14:18:03 +03:00
|
|
|
|
|
|
|
stdout, err := 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
|
|
|
|
2018-08-12 22:09:30 +03:00
|
|
|
fmt.Println(stdout)
|
|
|
|
|
2018-07-12 10:55:13 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// showCmd defines the "push" subcommand.
|
2018-07-19 13:30:25 +03:00
|
|
|
var pushCmd = &cobra.Command{
|
2018-10-17 21:38:10 +03:00
|
|
|
Use: "push [<remote>]",
|
2019-02-24 16:46:08 +03:00
|
|
|
Short: "Push bugs update to a git remote.",
|
2018-10-17 21:38:10 +03:00
|
|
|
PreRunE: loadRepo,
|
|
|
|
RunE: runPush,
|
2018-07-19 13:30:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2018-07-20 16:46:14 +03:00
|
|
|
RootCmd.AddCommand(pushCmd)
|
2018-07-12 13:44:46 +03:00
|
|
|
}
|