GitCommands.GitCommands.RenameRemote C# (CSharp) Method

RenameRemote() public static method

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