blob: ff07912a5a9831b992ecfeb821160c0a9632d070 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package commands
import (
"errors"
"os"
"github.com/MichaelMure/git-bug/bug"
"github.com/spf13/cobra"
)
func runPull(cmd *cobra.Command, args []string) error {
if len(args) > 1 {
return errors.New("Only pulling from one remote at a time is supported")
}
remote := "origin"
if len(args) == 1 {
remote = args[0]
}
return bug.Pull(repo, os.Stdout, remote)
}
// showCmd defines the "push" subcommand.
var pullCmd = &cobra.Command{
Use: "pull [<remote>]",
Short: "Pull bugs update from a git remote",
RunE: runPull,
}
func init() {
RootCmd.AddCommand(pullCmd)
}
|