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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
package commands
import (
"errors"
"fmt"
"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]
}
fmt.Printf("Fetching remote ...\n\n")
if err := repo.FetchRefs(remote, bug.BugsRefPattern+"*", bug.BugsRemoteRefPattern+"*"); err != nil {
return err
}
fmt.Printf("\nMerging data ...\n\n")
remoteRefSpec := fmt.Sprintf(bug.BugsRemoteRefPattern, remote)
remoteRefs, err := repo.ListRefs(remoteRefSpec)
if err != nil {
return err
}
for _, ref := range remoteRefs {
remoteRef := fmt.Sprintf(bug.BugsRemoteRefPattern, remote) + ref
remoteBug, err := bug.ReadBug(repo, remoteRef)
if err != nil {
return err
}
// Check for error in remote data
if !remoteBug.IsValid() {
fmt.Printf("%s: %s\n", remoteBug.HumanId(), "invalid remote data")
continue
}
localRef := bug.BugsRefPattern + remoteBug.Id()
localExist, err := repo.RefExist(localRef)
// the bug is not local yet, simply create the reference
if !localExist {
err := repo.CopyRef(remoteRef, localRef)
if err != nil {
return err
}
fmt.Printf("%s: %s\n", remoteBug.HumanId(), "new")
continue
}
localBug, err := bug.ReadBug(repo, localRef)
if err != nil {
return err
}
updated, err := localBug.Merge(repo, remoteBug)
if err != nil {
return err
}
if updated {
fmt.Printf("%s: %s\n", remoteBug.HumanId(), "updated")
}
}
return nil
}
// 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)
}
|