Top "Git-tag" questions

git-tag is the Git command used to create, list, delete or verify a tag object signed with GPG.

How do you rename a Git tag?

Today I was looking through the logs for a project and realized that I fat fingered a tag name some …

git git-tag
How to git clone a specific tag

From git-clone(1) Manual Page --branch can also take tags and detaches the HEAD at that commit in the resulting repository. …

git git-clone git-tag
How is a tag different from a branch in Git? Which should I use, here?

I am having some difficulty understanding how to use tags versus branches in git. I just moved the current version …

git version-control branch git-branch git-tag
Depend on a branch or tag using a git URL in a package.json?

Say I've forked a node module with a bugfix and I want to use my fixed version, on a feature …

git dependencies npm branch git-tag
Does "git fetch --tags" include "git fetch"?

A nice and simple question - is the function of "git fetch" a strict sub-set of git fetch --tags? I.…

git pull git-tag git-fetch
Switch to another Git tag

How do I check out version version/tag 1.1.4 of the rspec bundle? cd ~/Library/Application\ Support/TextMate/Bundles/ git clone …

git github git-tag
How to tell which commit a tag points to in Git?

I have a bunch of unannotated tags in the repository and I want to work out which commit they point …

git git-tag
Remove local git tags that are no longer on the remote repository

We use tags in git as part of our deployment process. From time to time, we want to clean up …

git git-tag
Show which git tag you are on?

I'm having trouble finding out which tag is currently checked out. When I do: git checkout tag1 git branch I …

git git-checkout git-tag
How do I merge a git tag onto a branch

I'm trying to find the syntax for merging a tagged commit onto another branch. I'm guessing that it's straight forward …

git-merge git-tag