I am about to create a patch file for a project. My branch is the "master" in my local repository. And the remote upstream branch is mapped to the local branch "origin". \ With this command I can compare the two branches and see all differences

git diff origin..master

[gives me a full patch format of all commits]

But in this case, I'd like to cherry-pick some of the commits and create a new patch file specificly for the different areas wheere my branch differs. The question is how I can see the individual commits?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

To just see the commits you can use

git log origin..master

You can also add the -p option to see the individual patches. If you want to cherry pick commits you can use the git rebase -i option which is pretty neat.

On your master branch:
git checkout -b create-patch-foo
git rebase -i origin

This will let you pick, edit, omit or even squash (combine) commits.

link|improve this answer
You might want to clarify that by “This will let you … merge commits.” you are referring to the ‘squash’ command in git rebase -i. Merge has specific meaning in version control systems that is different from the idea of ‘squash’ing diffs/patches/commits together. Maybe ‘combine’ is a less overloaded word if you do not like ‘squash’. – Chris Johnsen Dec 9 '09 at 12:20
Good call Chris, merge was an unfortunate choice of word for this meaning. – mhallendal Dec 9 '09 at 12:23
Thanks m5h, of course I should just use git-log and not git-diff to see the individual commits :) Perfect! – Jesper Rønn-Jensen Dec 9 '09 at 12:30
Great, feel free to mark the question as answered if you found the answer you asked for :) – mhallendal Dec 9 '09 at 13:11
m5h, don't worry that I will eventually mark question as answered. But doing so too hasty will prevent me from accepting a potentially better answer. :) – Jesper Rønn-Jensen Dec 9 '09 at 19:17
feedback

Try git cherry A B or git log --left-right --boundary --oneline A...B.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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