Мануалы и справочники Общие команды
git-tag

Команда git-tag: опции, ключи и примеры использования

git tag

Create, list, delete or verify tags. A tag is a static reference to a specific commit.

  • List all tags:

git tag

  • Create a tag with the given name pointing to the current commit:

git tag {{tag_name}}

  • Create an annotated tag with the given message:

git tag {{tag_name}} -m {{tag_message}}

  • Delete the tag with the given name:

git tag -d {{tag_name}}

  • Get updated tags from upstream:

git fetch --tags

  • List all tags whose ancestors include a given commit:

git tag --contains {{commit}}

Изображение Выучи 10 хороших привычек для работы в UNIX от IBM