GitCommands.GitCommands.DeleteTagCmd C# (CSharp) Method

DeleteTagCmd() public static method

public static DeleteTagCmd ( string tagName ) : string
tagName string
return string
        public static string DeleteTagCmd(string tagName)
        {
            return "tag -d \"" + tagName + "\"";
        }
GitCommands