Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If userA and I both fork a project from userB. Then userA creates a commit in their master fork and has not decided to make a pull request to userB master. How do I add their commit (userA) to my dev branch (not my master) in my fork?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can actually do this with one command. For example:

git pull https://github.com/userA/repo.git master

This will merge userA's master branch into your current branch (use git checkout dev on your own repository first).

If you find yourself doing this frequently, you can add a remote to your local repository that allows you to refer to userA's repository with a single name. For example:

git remote add userA https://github.com/userA/repo.git
git pull userA master
share|improve this answer
Does this leave any info or meta about userA in my dev branch? with git log I don't mind but basically I just want the few code changes from the single commit the user did instead of being ugly with copy pasting or copy files (which doesn't seem very git like) so that I can continue and pick up the work on fixing the issue the user was working on from the master – phwd Apr 30 '12 at 20:35
Okay I think I got it working after a conflict. Thanks – phwd Apr 30 '12 at 21:22
Yeah, you may get merge conflicts whenever you do a merge. Fortunately, Git makes them reasonably easy to resolve. I recommend Pro Git as good background reading. – Greg Hewgill Apr 30 '12 at 21:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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