From 23e4dceea354ddd0df7dc3480a8c7ec7ed77313d Mon Sep 17 00:00:00 2001 From: andyquinterom Date: Fri, 21 Jan 2022 16:47:41 -0500 Subject: [PATCH] Adds --first-parent options to remove previously deleted files --- src/formats/git.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/formats/git.cpp b/src/formats/git.cpp index 153f22d6..46f4f592 100644 --- a/src/formats/git.cpp +++ b/src/formats/git.cpp @@ -89,7 +89,7 @@ std::string GitCommitLog::logCommand() { std::string log_command = "git log " "--pretty=format:user:%aN%n%ct " - "--reverse --raw --encoding=UTF-8 " + "--reverse --raw --encoding=UTF-8 --first-parent " "--no-renames"; readGitVersion();