On Fri, 4 May 2012 14:48:58 +0530, karunakar merugu wrote:
git tag -l it gives me the lot of tags.I just want to work on some specific tag.Is it possible for me to create separate branch on that specific tag.
Start a new branch from the tag, and check that branch out so you can work in it: git checkout -b your-new-branch tagname This is shorthand for the two commands git branch your-new-branch tagname git checkout your-new-branch You should probably not move the tag, though you can with the 'git tag' command. -- Hallvard -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html