git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Is there something like a git format-patch --squash?
@ 2010-02-18 19:45 Avery Pennarun
  2010-02-18 19:46 ` Avery Pennarun
  2010-02-18 20:34 ` Jeff King
  0 siblings, 2 replies; 4+ messages in thread
From: Avery Pennarun @ 2010-02-18 19:45 UTC (permalink / raw)
  To: Jeff King; +Cc: Jon Seymour, Git Mailing List

On Thu, Feb 18, 2010 at 1:38 PM, Avery Pennarun <apenwarr@gmail.com> wrote:
> On Thu, Feb 18, 2010 at 12:11 AM, Jeff King <peff@peff.net> wrote:
>> One simple strategy would be to squash all side-branch development into
>> a single commit.
>
> Something like this (replace MY_START_BRANCH with your starting
> branch, and do this in a clone of your repository so you don't destroy
> anything by accident):
>
>        parent=""
>        git rev-list --first-parent --reverse  | while read commit; do
>                if [ -z "$parent" ]; then
>                        git checkout -f $commit
>                        git clean -fdx
>                else
>                        git diff $parent $commit | git apply --index
>                        git commit -C $commit
>                fi
>                parent=$commit
>        done

In the above, in the 'else' clause, what I really wanted was something like:

   git format-patch --stdout --squash $parent..$commit

with one big "| git am" at the end of the loop.

However, format-patch seems to have no way of just producing a single
patch with all the changes from a particular branch.  Is there some
other easy command that would do what I want?  It seems like something
that someone would have wanted before now.

Thanks,

Avery

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-02-18 21:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-18 19:45 Is there something like a git format-patch --squash? Avery Pennarun
2010-02-18 19:46 ` Avery Pennarun
2010-02-18 20:34 ` Jeff King
2010-02-18 21:56   ` Avery Pennarun

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).