GitCommands.GitModule.RemoveRemote C# (CSharp) Method

RemoveRemote() public method

public RemoveRemote ( string name ) : string
name string
return string
        public string RemoveRemote(string name)
        {
            return RunGitCmd("remote rm \"" + name + "\"");
        }
GitModule