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

remove --show-pulls from git log

zricethezav 4 лет назад
Родитель
Сommit
a37822dffd
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", "--show-pulls", "--all")
+		cmd = exec.Command("git", "-C", sourceClean, "log", "-p", "-U0", "--full-history", "--all")
 	}
 
 	log.Debug().Msgf("executing: %s", cmd.String())