예제 #1
0
파일: Git.cs 프로젝트: paulmarsy/Console
        public static GitOutputs InvokeWithOutput(BaseGitCommand command, GitOptions gitOptions = null)
        {
            var git = new Git(command, gitOptions);
            git.Start(true);
            git.WaitForExit();

            return git._gitOutputs;
        }
예제 #2
0
파일: Git.cs 프로젝트: paulmarsy/Console
 public static void Invoke(BaseGitCommand command, GitOptions gitOptions = null)
 {
     var git = new Git(command, gitOptions);
     git.Start(false);
     git.WaitForExit();
 }