repo git: ignore global gitconfig options when parsing the git log

This commit is contained in:
Hylke Bons 2012-03-20 17:20:28 +00:00
parent 56b68957ca
commit 4e4a2fa207
2 changed files with 3 additions and 2 deletions

View file

@ -563,7 +563,8 @@ namespace SparkleLib.Git {
// Console.InputEncoding = System.Text.Encoding.Unicode;
// Console.OutputEncoding = System.Text.Encoding.Unicode;
SparkleGit git_log = new SparkleGit (LocalPath, "log -" + count + " --raw -M --date=iso");
SparkleGit git_log = new SparkleGit (LocalPath,
"log -" + count + " --raw -M --date=iso --format=medium");
git_log.Start ();
// Reading the standard output HAS to go before

View file

@ -134,7 +134,7 @@ namespace SparkleShare {
else
state_text = "Syncing…";
StateText = state_text +
StateText = state_text + " " +
Controller.ProgressPercentage + "% " +
Controller.ProgressSpeed;