git-tag is the Git command used to create, list, delete or verify a tag object signed with GPG. A tag is used to mark specific points in history as being important.
Questions tagged [git-tag]
543 questions
-1
votes
1 answer
Checkout a git repo and keep updated with only the latest tag
Is there a way to keep a checkout updated between tags, and only tags?
Ideally, I want to go into the checkout's directory, type "git pull", have the command fail if there are no new tags in the repo or pull all the code down from that newer tag.…

Bill Riley
- 97
- 1
- 9
-2
votes
1 answer
Delete tags from feature branch
We are using Bitbucket for maintaining our code.
We have policy to not to push tags.
I have created a feature branch named myFeature and fetched on local.
Made some changes in files committed and pushed.
Later found that there were tags on…

वरुण
- 1,237
- 3
- 18
- 50
-2
votes
1 answer
When Git is creating a tag (`git tag -a` command w/out specifiing commit) - does it get reference from HEAD?
It is not explained in detail (IMHO) in docs https://git-scm.com/book/en/v2/Git-Basics-Tagging how git tag -a works.
will tag point to last or next commit or ?
does tag -a copy HEAD to make a pointer (if so, than to last commit)?
P.S. maybe it…

Alex Martian
- 3,423
- 7
- 36
- 71