git-bug/commands/pull.go

65 lines
1.2 KiB
Go
Raw Normal View History

package commands
2018-07-12 10:55:13 +03:00
import (
"errors"
"fmt"
2018-08-13 19:32:11 +03:00
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/util/interrupt"
"github.com/spf13/cobra"
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]
}
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
interrupt.RegisterCleaner(backend.Close)
fmt.Println("Fetching remote ...")
stdout, err := backend.Fetch(remote)
if err != nil {
return err
}
fmt.Println(stdout)
fmt.Println("Merging data ...")
for merge := range backend.MergeAll(remote) {
if merge.Err != nil {
fmt.Println(merge.Err)
}
if merge.Status != bug.MergeStatusNothing {
2018-09-19 22:45:04 +03:00
fmt.Printf("%s: %s\n", bug.FormatHumanID(merge.Id), merge)
}
}
return nil
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",
PreRunE: loadRepo,
RunE: runPull,
}
func init() {
2018-07-20 16:46:14 +03:00
RootCmd.AddCommand(pullCmd)
}