I\'m a recent git convert. It\'s great to be able to use git-svn to keep my branches locally without disturbing the svn server. There was a bug that existed in the latest versio
git checkout HEAD~1
This will move your current HEAD to one revision earlier.
git checkout
This will move your current HEAD to the given revision. Use git log or gitk to find the revision you’re looking for.
git log
gitk