First you have to be in your repository, do the necessary cd-ing to get to your working directory. You now need to add the remote branch, and then fetch it. Do this by:
git remote add someUser git://github.com/someUser/someRepo.git
git fetch someUser
You can now run commands such as git lo...
Continue reading...