PDA

View Full Version : [SOLVED] Help with some git



Liiiim
January 4th, 2012, 05:34 PM
I'm trying to contribute to a project, but I'm having trouble navigating through all the git commands. I cloned the original project, created and switched to a new branch, and made a few commits. Then I forked the original project and sent a pull request through GitHub. I figured all that out from here (http://progit.org/book/ch5-2.html), and I think I did all that ok.

Now, someone else has forked my branch and sent a pull request to merge from their fork to my master branch. I merged it through GitHub, so now on GitHub I can go to the repository I forked from the original project and see in my master branch the changes that the other person made. How can I download those changes to my local computer? If I go to the directory that I made when I first cloned the project and run 'git pull' it says that it's already up-to-date.

Thanks!

e: Actually, I think I've figured it out.