git-bug/commands/pull.go

33 lines
584 B
Go
Raw Normal View History

package commands
2018-07-12 10:55:13 +03:00
import (
"errors"
"github.com/MichaelMure/git-bug/bug"
"github.com/spf13/cobra"
"os"
2018-07-12 10:55:13 +03:00
)
func runPull(cmd *cobra.Command, args []string) error {
2018-07-12 10:55:13 +03:00
if len(args) > 1 {
return errors.New("Only pulling from one remote at a time is supported")
2018-07-12 10:55:13 +03:00
}
remote := "origin"
if len(args) == 1 {
remote = args[0]
}
return bug.Pull(repo, os.Stdout, remote)
2018-07-12 10:55:13 +03:00
}
// showCmd defines the "push" subcommand.
var pullCmd = &cobra.Command{
Use: "pull [<remote>]",
Short: "Pull bugs update from a git remote",
RunE: runPull,
}
func init() {
2018-07-20 16:46:14 +03:00
RootCmd.AddCommand(pullCmd)
}