
git-tag
List of commands for git-tag:
-
git-tag:tldr:12026 git-tag: Create an annotated tag with the given message.$ git tag ${tag_name} -m ${tag_message}try on your machineexplain this command
-
git-tag:tldr:28e24 git-tag: Create a tag with the given name pointing to a given commit.$ git tag ${tag_name} ${commit}try on your machineexplain this command
-
git-tag:tldr:7b7b4 git-tag: Create a tag with the given name pointing to the current commit.$ git tag ${tag_name}try on your machineexplain this command
-
git-tag:tldr:8625c git-tag: Delete the tag with the given name.$ git tag -d ${tag_name}try on your machineexplain this command
-
git-tag:tldr:d44a9 git-tag: List all tags whose ancestors include a given commit.$ git tag --contains ${commit}try on your machineexplain this command