GitCommands.GitCommands.PushAsync C# (CSharp) Method

PushAsync() public static method

public static PushAsync ( string path, string branch, bool all ) : Process
path string
branch string
all bool
return Process
        public static Process PushAsync(string path, string branch, bool all)
        {
            var arguments =
                string.Format(" /k \"\"{0}\" {1}\"",
                              Settings.GitCommand,
                              PushCmd(FixPath(path),
                                      branch,
                                      all));
            return RunCmdAsync("cmd.exe", arguments);
        }
GitCommands