Uses of Class
org.eclipse.jgit.api.TagCommand
-
Packages that use TagCommand Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit). -
-
Uses of TagCommand in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return TagCommand Modifier and Type Method Description TagCommand
TagCommand. setAnnotated(boolean annotated)
Configure this tag to be created as an annotated tagTagCommand
TagCommand. setForceUpdate(boolean forceUpdate)
If set to true the Tag command may replace an existing tag object.TagCommand
TagCommand. setMessage(java.lang.String message)
Set the tagmessage
.TagCommand
TagCommand. setName(java.lang.String name)
Set the tagname
.TagCommand
TagCommand. setObjectId(RevObject id)
Sets the object id of the tag.TagCommand
TagCommand. setSigned(boolean signed)
If set to true the Tag command creates a signed tag object.TagCommand
TagCommand. setTagger(PersonIdent tagger)
Sets the tagger of the tag.TagCommand
Git. tag()
Return a command object to execute aTag
command
-