コード例 #1
0
 public async Task CommitAsync(ICommandInput commands, string commitMessage)
 {
     await Task.Run(async() => {
         if (Status != RepoStatus.RepoFoundWithChanges)
         {
             return;
         }
         Status       = RepoStatus.ProcessingCommit;
         string toRun = $"commit -m \"{commitMessage}\"";
         //Add new files to repo and remove deleted files from repo.
         await commands.RunProcessAsync("hg", "addremove");
         string result = await commands.RunProcessAsync("hg", toRun);
         if (String.IsNullOrWhiteSpace(result))
         {
             Status = RepoStatus.CommitSucceeded;
         }
         else
         {
             Status = RepoStatus.CommitFailed;
         }
     });
 }
コード例 #2
0
ファイル: Git.cs プロジェクト: StoicDreams/VersioningMMRB
 public async Task CommitAsync(ICommandInput commands, string commitMessage)
 {
     await Task.Run(async() => {
         if (Status != RepoStatus.RepoFoundWithChanges)
         {
             return;
         }
         Status        = RepoStatus.ProcessingCommit;
         string toRun  = $"commit -a -m \"{commitMessage}\"";
         string result = await commands.RunProcessAsync("git", toRun);
         if (result.Contains(commitMessage))
         {
             Status = RepoStatus.CommitSucceeded;
         }
         else
         {
             Status = RepoStatus.CommitFailed;
         }
     });
 }
コード例 #3
0
ファイル: Git.cs プロジェクト: StoicDreams/VersioningMMRB
        public bool Exists(ICommandInput commands)
        {
            Task <string> task = commands.RunProcessAsync("git", "status");

            task.Wait();
            string result = task.Result;

            task.Dispose();
            if (result.Contains(GitMessageNoRepo))
            {
                Status = RepoStatus.NoRepoFound;
                return(false);
            }
            else if (String.IsNullOrWhiteSpace(result))
            {
                Status = RepoStatus.RepoFoundNoChanges;
            }
            else
            {
                Status = RepoStatus.RepoFoundWithChanges;
            }
            return(true);
        }