repo git: don't try to resolve conflicts when a rebase failed due to locked files

This commit is contained in:
Hylke Bons 2012-11-21 09:22:29 +00:00
parent a5218c8e1f
commit cd6f69ef43

View file

@ -472,8 +472,8 @@ namespace SparkleLib.Git {
git.StartAndWaitForExit ();
return false;
}
} else {
SparkleLogger.LogInfo ("Git", Name + " | Conflict detected, trying to get out...");
string rebase_apply_path = new string [] { LocalPath, ".git", "rebase-apply" }.Combine ();
@ -489,6 +489,7 @@ namespace SparkleLib.Git {
SparkleLogger.LogInfo ("Git", Name + " | Conflict resolved");
OnConflictResolved ();
}
}
git = new SparkleGit (LocalPath, "config core.ignorecase false");
git.StartAndWaitForExit ();