From b85ef3fed74a51bc583f765a2fa15eb62d684b03 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 3 Jul 2012 00:08:34 +0200 Subject: [PATCH] repo git: Use a more descriptive flag when calling git-log --- SparkleLib/Git/SparkleRepoGit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleLib/Git/SparkleRepoGit.cs b/SparkleLib/Git/SparkleRepoGit.cs index 5863ea55..2f663819 100644 --- a/SparkleLib/Git/SparkleRepoGit.cs +++ b/SparkleLib/Git/SparkleRepoGit.cs @@ -576,7 +576,7 @@ namespace SparkleLib.Git { List change_sets = new List (); SparkleGit git_log = new SparkleGit (LocalPath, - "log -" + count + " --raw -M --date=iso --format=medium --no-color --no-merges"); + "log -" + count + " --raw --find-renames --date=iso --format=medium --no-color --no-merges"); git_log.Start ();