GitCommands.GitCommands.DeleteTag C# (CSharp) Method

DeleteTag() public static method

public static DeleteTag ( string tagName ) : string
tagName string
return string
        public static string DeleteTag(string tagName)
        {
            return RunCmd(Settings.GitCommand, DeleteTagCmd(tagName));
        }
GitCommands