2

How do I get the source from a previous version like a release version at github, when the master is updated daily? Sometimes later versions contain bugs I can't solve and I want to testrun an earlier version instead. But I'm not sure how to get to it?

MiB
  • 575
  • 2
  • 10
  • 26

1 Answers1

2

usually you can go to the download section at github and download a tagged commit. That's usually the stable version of that repository.

three
  • 8,262
  • 3
  • 35
  • 39
  • Yes, I found this eariler thread too: http://stackoverflow.com/questions/791959/how-to-use-git-to-download-a-particular-tag Thank you! – MiB Dec 21 '11 at 19:13