git-bug/commands/push.go

47 lines
746 B
Go
Raw Normal View History

package commands
2018-07-12 10:55:13 +03:00
import (
"errors"
2018-08-12 22:09:30 +03:00
"fmt"
"github.com/MichaelMure/git-bug/cache"
"github.com/spf13/cobra"
2018-07-12 10:55:13 +03:00
)
func runPush(cmd *cobra.Command, 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]
}
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
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-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.
var pushCmd = &cobra.Command{
Use: "push [<remote>]",
Short: "Push bugs update to a git remote",
RunE: runPush,
}
func init() {
2018-07-20 16:46:14 +03:00
RootCmd.AddCommand(pushCmd)
}