Experimenting with using git pull instead of git merge.
diff --git a/cmd/git.go b/cmd/git.go
index 9ad81a7..8f6868a 100644
--- a/cmd/git.go
+++ b/cmd/git.go
@@ -85,8 +85,8 @@
//Info("Git: Found branch %s", string(out))
//Debug("Reference %s is to a branch.", dep.Reference)
// git merge --ff-only origin $VERSION
- out, err := exec.Command("git", "merge", "--ff-only", "origin", dep.Reference).CombinedOutput()
- Info("Git: %s", string(out))
+ out, err := exec.Command("git", "pull", "--ff-only", "origin", dep.Reference).CombinedOutput()
+ Info("Git: (merge) %s", string(out))
if err != nil {
return err
}