Ejemplo n.º 1
0
 public static void StashPop()
 {
     Debug.Assert(!GetStatus().AnyChanges);
     OldLogger.LogLine("Restoring work from the stash");
     (new ProcessHelper("git.exe", "stash pop")).Go();
 }
Ejemplo n.º 2
0
 public static void PullCurrentBranch()
 {
     Debug.Assert(!GetStatus().AnyChanges);
     OldLogger.LogLine("Pulling into " + GetCurrentBranchName());
     (new ProcessHelper("git.exe", "pull")).Go();
 }