GitCommands.GitCommands.RemoveRemote C# (CSharp) Method

RemoveRemote() public static method

public static RemoveRemote ( string name ) : string
name string
return string
        public static string RemoveRemote(string name)
        {
            return RunCmd(Settings.GitCommand, "remote rm \"" + name + "\"");
        }
GitCommands