Re: Lump commit HOWTO?
From: Josh Boyer <hidden>
Date: 2016-06-15 22:43:21
On 7/12/07, Alex Riesen [off-list ref] wrote:
Josh Boyer, Fri, Jul 13, 2007 03:21:17 +0200:quoted
Hi All, I have a specific workflow in mind that I'm not entirely sure how to accomplish with git. What I'd like to do is track a project in a local branch, and do commits of my own there as well. Then when I'm ready to submit the work, I want to take all the incremental commits and lump them into a single new commit and push that out as a patch or into a branch for people to pull from.See git merge --squash. It is exactly that.
Hm, OK. I'll have to play with that.
Also git-rebase --interactive and git cherry-pick -n can help you to get the same.
Gah... I totally missed git rebase. Looks massively useful. Thanks! josh