[repo] also push changes the user makes whilst we're syncing

This commit is contained in:
Hylke Bons 2011-03-02 21:20:25 +00:00
parent b84bab78d5
commit 1f52f24910

View file

@ -385,7 +385,9 @@ namespace SparkleLib {
}
Watcher.EnableRaisingEvents = false;
Rebase ();
Watcher.EnableRaisingEvents = true;
}
@ -446,7 +448,10 @@ namespace SparkleLib {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Remote changes found.");
Fetch ();
Watcher.EnableRaisingEvents = false;
Rebase ();
Watcher.EnableRaisingEvents = true;
}
@ -479,9 +484,15 @@ namespace SparkleLib {
SparkleHelpers.DebugInfo ("Local", "[" + Name + "] Changes have settled.");
_IsBuffering = false;
HasChanged = false;
while (Status.AnyDifferences) {
Watcher.EnableRaisingEvents = false;
AddCommitAndPush ();
Watcher.EnableRaisingEvents = true;
}
}
@ -699,8 +710,6 @@ namespace SparkleLib {
public void Rebase ()
{
Watcher.EnableRaisingEvents = false;
if (Status.AnyDifferences) {
Add ();
@ -768,8 +777,6 @@ namespace SparkleLib {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Changes rebased.");
Watcher.EnableRaisingEvents = true;
}