GitCommands.GitCommands.PushTagCmd C# (CSharp) Method

PushTagCmd() public static method

public static PushTagCmd ( string path, string tag, bool all ) : string
path string
tag string
all bool
return string
        public static string PushTagCmd(string path, string tag, bool all)
        {
            return PushTagCmd(path, tag, all, false);
        }

Same methods

GitCommands::PushTagCmd ( string path, string tag, bool all, bool force ) : string
GitCommands