diff --git a/SparkleLib/Git/SparkleRepoGit.cs b/SparkleLib/Git/SparkleRepoGit.cs index dc3c2952..d4e1600f 100644 --- a/SparkleLib/Git/SparkleRepoGit.cs +++ b/SparkleLib/Git/SparkleRepoGit.cs @@ -731,6 +731,13 @@ namespace SparkleLib.Git { string output = git.StartAndReadStandardOutput (); + if (path == null && string.IsNullOrWhiteSpace (output)) { + git = new SparkleGit (LocalPath, "log -n 75 --raw --find-renames --date=iso " + + "--format=medium --no-color --no-merges"); + + output = git.StartAndReadStandardOutput (); + } + string [] lines = output.Split ("\n".ToCharArray ()); List entries = new List ();