Top "Git-tag" questions

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

how to close a branch in git

When I know I won't use a branch any more is it possible to close or lock it? Actually I …

git git-branch git-tag git-archive
Delete all tags from a Git repository

I want to delete all the tags from a Git repository. How can I do that? Using git tag -d …

git git-tag
Why should I care about lightweight vs. annotated tags?

I switched from Subversion to Git as my day-to-day VCS last year and am still trying to grasp the finer …

git git-tag
Why should I use tags vs. release/beta branches for versioning?

I've been using git for about a year and would like to use tagging to, well, tag commits at different …

git branch git-tag
Adding Tags to a Pull Request

I have a repo iontech/Anagen forked from agiliq/Anagen I made a few commits to my fork and added …

git github pull-request git-tag
git tag delete and re-add

On git hub I re-added the tag by doing: git tag -d 12.15 git push origin :refs/tags/12.15 git tag -a 12.15 …

git github git-tag
Git Tag list, display commit sha1 hashes

so the git tag command lists the current git tags tag1 tag2 git tag -n prints tag's message tag1 blah …

git logging hash git-tag verbose
Get the time and date of git tags

I have a project that is using git and have tagged all the releases with a tag. $ git tag v1.0.0 …

git date time git-tag
Git force push tag when the tag already exists on remote

I have a tag already pushed onto the remote. When another user creates the same tag and tries to push, …

git git-tag
What names are valid git tags?

I have got a error message while creating tag containing [ character: fatal: '[' is not a valid tag name. …

git git-tag