vote up 2 vote down star
1

I have forked a branch from a repository it github and commit something for my using. now I found the original repository has a good feature which is at head, I want to merge it only without previous commits . what I should do? I have known how to merge all commit:

git branch -b a-good-feature
git pull repository master
git checkout master
git merge a-good-feature
git commit -a
git push

Thank you very much!

flag

2 Answers

vote up 7 vote down check

'git cherry-pick' should be your answer here.

Apply the change introduced by an existing commit.

Do not forget to read bdonlan's answer about the consequence of cherry-picking in this post:
"Pull all commits from a branch, push specified commits to another", where:

A-----B------C
 \
  \
   D

becomes:

A-----B------C
 \
  \
   D-----C'

The problem with this commits is that git considers commits to include all history before them

Where C' has a different SHA-1 ID.
Likewise, cherry picking a commit from one branch to another basically involves generating a patch, then applying it, thus losing history that way as well.

This changing of commit IDs breaks git's merging functionality among other things (though if used sparingly there are heuristics that will paper over this).
More importantly though, it ignores functional dependencies - if C actually used a function defined in B, you'll never know.

link|flag
Thank you, I solved this problem. – openid000 May 19 at 9:22
thanks for the information. I learn a little philosophy of git, although it is not very suitable for small project. Perhaps a better way to handle this would be to have more fine grained branches. That is, instead of just having a 'master', have 'featureA', 'bugfixB', etc. Perform code review on an entire branch at a time - where each branch is very focused on doing only one thing - and then merge that one branch when you're done. This is the workflow that git is designed for, and what it's good at :) – openid000 May 22 at 8:36
@openid000: "more fine grained branches": which is indeed exactly what bdonlan suggested in his answer. – VonC May 22 at 8:47
Note: "git rebase" also changes SHA-1. See also "git rebase vs. git merge ( stackoverflow.com/questions/804115/… ) and "git workflow" ( stackoverflow.com/questions/457927/… ) for cases where "git rebase" is legitimate. – VonC May 22 at 8:50
Between "fine grained branches", "cherry-pick" and "rebase", you will then have all the possibilities for managing code in branches with git. – VonC May 22 at 8:51
vote up 4 vote down

You can use git cherry-pick to apply a single commit by itself to your current branch.

link|flag
Thank you all the same! – openid000 May 19 at 9:22
+1 for your former post on cherry picking ( stackoverflow.com/questions/880957/… ). I took the liberty to copy an extract of it in my own answer above. – VonC May 19 at 10:24

Your Answer

Get an OpenID
or

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