aboutsummaryrefslogblamecommitdiffstats
path: root/commands/pull.go
blob: e9f0ad3e4b2c1f9b7bee8ec5d9fe86463e7c2be6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                

        
                

            
                                              
                                

 
                                                       
                          
                                                                                        






                                






                                                


                                         






                                                    
                                   
 
package commands

import (
	"errors"
	"os"

	"github.com/MichaelMure/git-bug/cache"
	"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]
	}

	backend, err := cache.NewRepoCache(repo)
	if err != nil {
		return err
	}
	defer backend.Close()

	return backend.Pull(remote, os.Stdout)
}

// 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)
}