Search code examples
gittagstaggingrevert

How do you revert to a specific tag in Git?


I know how to revert to older commits in a Git branch, but how do I revert back to a branch's state dictated by a tag? I envision something like this:

git revert -bytag "Version 1.0 Revision 1.5"

Is this possible?


Solution

  • Git tags are just pointers to the commit. So you use them the same way as you do HEAD, branch names or commit sha hashes. You can use tags with any git command that accepts commit/revision arguments. You can try it with git rev-parse tagname to display the commit it points to.

    In your case you have at least these two alternatives:

    1. Reset the current branch to specific tag:

      git reset --hard tagname
      
    2. Generate revert commit on top to get you to the state of the tag:

      git revert tag
      

    This might introduce some conflicts if you have merge commits though.