Przeglądaj źródła

removing --simplify-merges and --show-pulls (#707)

Zachary Rice 4 lat temu
rodzic
commit
1c6b28aa61
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      git/git.go

+ 1 - 1
git/git.go

@@ -21,7 +21,7 @@ func GitLog(source string, logOpts string) (<-chan *gitdiff.File, error) {
 		args = append(args, strings.Split(logOpts, " ")...)
 		cmd = exec.Command("git", args...)
 	} else {
-		cmd = exec.Command("git", "-C", sourceClean, "log", "-p", "-U0", "--full-history", "--simplify-merges", "--show-pulls", "--all")
+		cmd = exec.Command("git", "-C", sourceClean, "log", "-p", "-U0", "--full-history", "--show-pulls", "--all")
 	}
 
 	log.Debug().Msgf("executing: %s", cmd.String())