Reputation: 8936
I am a user of Subversion. I can easily checkout the tag from svn as like trunk. But I am struggling with GitHub. I want to checkout from tag and import the project in Eclipse.
After I click checkout, nothing happens.
Upvotes: 0
Views: 163
Reputation: 19025
Actually, something did happen: you checked out the commit at that tag. The thing is, git is so much faster than SVN, it can sometimes seem like nothing happened! If you check the files in your working directory, you will see that they indeed reflect the state of the repository at that tag.
Upvotes: 1