mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
66 lines
1.2 KiB
Go
66 lines
1.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/MichaelMure/git-bug/bug"
|
|
"github.com/MichaelMure/git-bug/cache"
|
|
"github.com/MichaelMure/git-bug/entity"
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
|
"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()
|
|
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 result := range backend.MergeAll(remote) {
|
|
if result.Err != nil {
|
|
fmt.Println(result.Err)
|
|
}
|
|
|
|
if result.Status != entity.MergeStatusNothing {
|
|
fmt.Printf("%s: %s\n", bug.FormatHumanID(result.Id), result)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// 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() {
|
|
RootCmd.AddCommand(pullCmd)
|
|
}
|