I'm a developer in training, with some spare time on my hands. I am trying to re-continue a discontinued project (BigBrother, http://forums.bukkit.org/threads/sec-bigbrother-1-11-0-catch-griffers-red-handed-1060.12879), and I don't have access to the repository besides read-only access, as I don't own it. I need to get a copy of an older snapshot of it, because it was the last stable one.

Am I missing something? Right now I can only get the latest version by "git clone xxx.git" Any help would be appreciated :)

link|improve this question
feedback

2 Answers

git clone is downloading the entire history, not just the latest version. Try git log to get the list of revisions, then git checkout [SOME REVISION] to rewrite your working tree to that commit

link|improve this answer
Thank you so much, now to get Maven and Eclipse fired up ^.^ – alfonsojon Oct 30 '11 at 1:51
feedback

When using clone your taking the entire repository and its history (so all commit versions). So after clone, you can then just checkout whichever historical version you are looking to work from.

i.e. git checkout -b branchName branchHash

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.