Example #1
0
 public void StagePath(GitWrapper.ChangeType changeType, string path)
 {
     if (changeType == GitWrapper.ChangeType.Deleted)
     {
         GitWrapper.RemovePath(path);
     }
     else
     {
         GitWrapper.StagePath(path);
     }
     isDirty = true;
 }