Thursday, February 5, 2015

How to sync git with a specific tag

While using source code from git, you might want to sync a specific version. Each version will be corresponding to a tag in git(e.g. 0.92 or 1.0.0), and you can sync git with a specific tag by using the command below:

<Git Source Path>$ git checkout <Tag Name>

Reference: http://stackoverflow.com/questions/791959/download-a-specific-tag-with-git

No comments:

Post a Comment