GitCommands.GitCommands.FetchCmd C# (CSharp) Method

FetchCmd() public static method

public static FetchCmd ( string remote, string remoteBranch, string localBranch ) : string
remote string
remoteBranch string
localBranch string
return string
        public static string FetchCmd(string remote, string remoteBranch, string localBranch)
        {
            return "fetch " + GetFetchArgs(remote, remoteBranch, localBranch);
        }
GitCommands