Просмотр исходного кода

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

Zachary Rice 4 лет назад
Родитель
Сommit
1c6b28aa61
1 измененных файлов с 1 добавлено и 1 удалено
  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())