vote up 3 vote down star
1

I've got eight commits on a branch that I'd like to email to some people who aren't git enlightened, yet. So far, everything I do either gives me 8 patch files, or starts giving me patch files for every commit in the branch's history, since the beginning of time. I used git rebase --interactive to squash the commits, but now everything I try gives me zillions of patches from the beginning of time. What am I doing wrong?

git format-patch master HEAD  # yields zillions of patches, even though there's only one commit since master
flag

64% accept rate
I am curious about what method you will end up using amongst the propositions below. Let us know ;) – VonC Mar 6 at 6:48
I will use git diff as suggested by Rob Di Marco. But I'm off work for two weeks, having just witnessed the birth of my second baby girl last night, so it'll be awhile before I use it! :) – skiphoppy Mar 6 at 19:56

3 Answers

vote up 5 vote down check

I'd recommend doing this on a throwaway branch as follows. If your commits are in the "newlines" branch and you have switched back to your "master" branch already, this should do the trick:

[adam@mbp2600 example (master)]$ git checkout -b tmpsquash
Switched to a new branch "tmpsquash"

[adam@mbp2600 example (tmpsquash)]$ git merge --squash newlines
Updating 4d2de39..b6768b2
Fast forward
Squash commit -- not updating HEAD
 test.txt |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

[adam@mbp2600 example (tmpsquash)]$ git commit -a -m "My squashed commits"
[tmpsquash]: created 75b0a89: "My squashed commits"
 1 files changed, 2 insertions(+), 0 deletions(-)

[adam@mbp2600 example (tmpsquash)]$ git format-patch master
0001-My-squashed-commits.patch

Hope this helps!

link|flag
This is what I use when I want to keep the history locally (in case I need to edit the patch). Otherwise I just use rebase -i and squash the commits. – sebnow Mar 9 at 5:23
vote up 5 vote down

As you already know, a git format-patch -8 HEAD will give you eight patches.

If you want your 8 commits appear as one, and do not mind rewriting the history of your branch (o-o-X-A-B-C-D-E-F-G-H), you could :

git rebase -i
// squash A, B, C, D, E ,F, G into H

or, and it would be a better solution, replay all your 8 commits from X (the commit before your 8 commits) on a new branch

git branch delivery X
git checkout delivery
git merge master
git format-patch HEAD

That way, you only have one commit on the "delivery" branch, and it represent all your last 8 commits

link|flag
Thank you for the editing, Ben. Your "Arithmetic" is better than my shaky orthography ;) – VonC Mar 6 at 5:17
vote up 3 vote down

I always use git diff so in your example, something like

git diff master > patch.txt
link|flag

Your Answer

Get an OpenID
or

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