Ponsuyambu
Ponsuyambu

Reputation: 8936

How to checkout from GitHub tag?

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.

SVN Tag checkout

enter image description here

After I click checkout, nothing happens.

Upvotes: 0

Views: 163

Answers (1)

David Deutsch
David Deutsch

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

Related Questions