sync
[gitlive] / GitRepo.vala
index 3f014ba..b1bb25f 100644 (file)
@@ -255,38 +255,38 @@ public class GitRepo : Object
     {
        // in theory we should check to see if other repo's have got the same branch and merge all them at the same time.
        // also need to decide which branch we will merge into?
-       var ret = "";
-       if (action == "CLOSE" || action == "LEAVE") {
-                       
+                  var ret = "";
+                  if (action == "CLOSE" || action == "LEAVE") {
+                                  
  
-                       try {
-                               var oldbranch = this.currentBranch.name;
-                               this.setActiveTicket(null, "master");
-                       string [] cmd = { "merge",   "--squash",  oldbranch };
-                       this.git( cmd );
-                        cmd = { "commit",   "--m",  commit_message };
-                       this.git( cmd );
-                       this.loadBranches(); // updates lastrev..
-                       
-                       var notification = new Notify.Notification(
-                                       "Merged branch %s to master".printf(oldbranch),
-                                       "",
-                                        "dialog-information"
-                                       
-                               );
-       
-                               notification.set_timeout(5);
-                               notification.show();   
-                       
-                       // close ticket..
-                       return true; 
-                       
-                   } catch (Error e) {
+               try {
+                       var oldbranch = this.currentBranch.name;
+                       this.setActiveTicket(null, "master");
+               string [] cmd = { "merge",   "--squash",  oldbranch };
+               this.git( cmd );
+                cmd = { "commit",   "--m",  commit_message };
+               this.git( cmd );
+               this.loadBranches(); // updates lastrev..
+               
+               var notification = new Notify.Notification(
+                               "Merged branch %s to master".printf(oldbranch),
+                               "",
+                                "dialog-information"
+                               
+                       );
 
-                       GitMonitor.gitmonitor.pauseError(e.message);
-                       return false;
-                   }
-                   // error~?? -- show the error dialog...
+                       notification.set_timeout(5);
+                       notification.show();   
+               
+               // close ticket..
+               return true; 
+               
+           } catch (Error e) {
+
+               GitMonitor.gitmonitor.pauseError(e.message);
+               return false;
+           }
+           // error~?? -- show the error dialog...
                    return false;
        }
        if (action == "MASTER") {
@@ -351,8 +351,26 @@ public class GitRepo : Object
                
                try {
                     if (this.branches.has_key(branchname)) {
-                           string[] cmd = { "checkout", branchname  };
-                           this.git(cmd);         
+                       // this is where it get's tricky...
+                       
+                       string[] cmd = { "ls-files" ,  "-m" };                   // list the modified files..
+                   var ret = this.git(cmd);
+                   var stash = ret.length> 1 ;
+                   
+                       
+                   cmd = { "stash" };                  
+                   if (stash) { this.git(cmd); }
+                   
+                   cmd = { "checkout", branchname  };
+                   this.git(cmd);
+                   
+                   cmd = { "merge", "master"  };
+                   this.git(cmd);
+                   
+                   cmd = { "stash", "pop"  };
+                   if (stash) { this.git(cmd); }
+                   
+                   
                    } else {
                            string[] cmd = { "checkout", "-b" , branchname  };
                            this.git(cmd);