Skip to content

Commit

Permalink
Corrected git log command.
Browse files Browse the repository at this point in the history
With spaces around the '=' it resulted with the git error:
fatal: ambiguous argument '=': unknown revision or path not in the working tree.

(cherry picked from commit b1487df)
  • Loading branch information
jbialobr committed Nov 27, 2018
1 parent 9aca9b1 commit 1552672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitUI/CommandsDialogs/FormCommit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ private void generateListOfChangesInSubmodulesChangesToolStripMenuItem_Click(obj
var module = new GitModule(_fullPathResolver.Resolve(name.EnsureTrailingPathSeparator()));
args = new GitArgumentBuilder("log")
{
"--pretty = format:\" %m %h - %s\"",
"--pretty=format:\" %m %h - %s\"",
"--no-merges",
$"{from}...{to}"
};
Expand Down

0 comments on commit 1552672

Please sign in to comment.