Skip to content
This repository was archived by the owner on May 24, 2024. It is now read-only.

Commit be7a51a

Browse files
authored
remove --branches flag (#65)
Signed-off-by: Ibrahim Mbaziira <[email protected]> Signed-off-by: Ibrahim Mbaziira <[email protected]>
1 parent 87380cd commit be7a51a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/git/git.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,8 +1631,8 @@ func (j *DSGit) ParseGitLog(ctx *shared.Ctx) (cmd *exec.Cmd, err error) {
16311631
j.log.WithFields(logrus.Fields{"operation": "ParseGitLog"}).Debugf("parsing logs from %s", j.GitPath)
16321632
}
16331633
// Example full command line:
1634-
// LANG=C PAGER='' git log --reverse --topo-order --branches --tags --no-color --decorate --raw --numstat --pretty=fuller --decorate=full --parents -M -C -c
1635-
cmdLine := []string{"git", "log", "--reverse", "--topo-order", "--branches", "--tags"}
1634+
// LANG=C PAGER='' git log --reverse --topo-order --tags --no-color --decorate --raw --numstat --pretty=fuller --decorate=full --parents -M -C -c
1635+
cmdLine := []string{"git", "log", "--reverse", "--topo-order", "--tags"}
16361636
cmdLine = append(cmdLine, GitLogOptions...)
16371637
if ctx.DateFrom != nil {
16381638
cmdLine = append(cmdLine, "--since="+shared.ToYMDHMSDate(*ctx.DateFrom))

0 commit comments

Comments
 (0)