Example #1
0
 public static bool TakeReset(Commit commit)
 {
     if (!GitManager.Settings.ExternalsType.HasFlag(GitSettings.ExternalsTypeEnum.Fetch) || SelectedAdatapter == null)
     {
         return(false);
     }
     return(SelectedAdatapter.Reset(commit));
 }
Example #2
0
 public bool TakeReset(Commit commit)
 {
     if (!gitSettings.ExternalsType.IsFlagSet(GitSettingsJson.ExternalsTypeEnum.Fetch) || SelectedAdatapter == null)
     {
         return(false);
     }
     return(SelectedAdatapter.Reset(commit));
 }