Namespaces

Types in GitSharp.Commands

Type TagCommand

Namespace GitSharp.Commands

Parent AbstractCommand

Properties

Public properties

bool A get; set;

Not implemented Make an unsigned, annotated tag object

string ActualDirectory get;

List<string> Arguments get; set;

string Contains get; set;

Not implemented Only list tags which contain the specified commit.

bool D get; set;

Not implemented Delete existing tags with the given names.

string F get; set;

Not implemented Take the tag message from the given file. Use '-' to read the message from the standard input. Implies `-a` if none of `-a`, `-s`, or `-u ` is given.

bool Force get; set;

Not implemented Replace an existing tag with the given name (instead of failing)

string GitDirectory get; set;

string L get; set;

Not implemented List tags with names that match the given pattern (or all if no pattern is given). Typing "git tag" without arguments, also lists all tags.

string M get; set;

Not implemented Use the given tag message (instead of prompting). If multiple `-m` options are given, their values are concatenated as separate paragraphs. Implies `-a` if none of `-a`, `-s`, or `-u ` is given.

string N get; set;

Not implemented specifies how many lines from the annotation, if any, are printed when using -l. The default is not to print any annotation lines. If no number is given to `-n`, only the first line is printed. If the tag is not annotated, the commit message is displayed instead.

StreamWriter OutputStream get; set;

Repository Repository get; set;

bool S get; set;

Not implemented Make a GPG-signed tag, using the default e-mail address's key

string U get; set;

Not implemented Make a GPG-signed tag, using the given key

bool V get; set;

Not implemented Verify the gpg signature of the given tag names.