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

Commit db35169

Browse files
Remove tags flag (#76)
* remove tags flag Signed-off-by: Ayman <[email protected]> * clean up Signed-off-by: Ayman <[email protected]> * clean up Signed-off-by: Ayman <[email protected]> --------- Signed-off-by: Ayman <[email protected]> Co-authored-by: Ayman <[email protected]>
1 parent a5ca0d1 commit db35169

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
@@ -1646,8 +1646,8 @@ func (j *DSGit) ParseGitLog(ctx *shared.Ctx) (cmd *exec.Cmd, err error) {
16461646
j.log.WithFields(logrus.Fields{"operation": "ParseGitLog"}).Debugf("parsing logs from %s", j.GitPath)
16471647
}
16481648
// Example full command line:
1649-
// LANG=C PAGER='' git log --reverse --topo-order --tags --no-color --decorate --raw --numstat --pretty=fuller --decorate=full --parents -M -C -c
1650-
cmdLine := []string{"git", "log", "--reverse", "--topo-order", "--tags"}
1649+
// LANG=C PAGER='' git log --reverse --topo-order --no-color --decorate --raw --numstat --pretty=fuller --decorate=full --parents -M -C -c
1650+
cmdLine := []string{"git", "log", "--reverse", "--topo-order"}
16511651
cmdLine = append(cmdLine, GitLogOptions...)
16521652
if ctx.DateFrom != nil {
16531653
cmdLine = append(cmdLine, "--since="+shared.ToYMDHMSDate(*ctx.DateFrom))

0 commit comments

Comments
 (0)