Re: [PATCH] rebase -i: support single-letter abbreviations for the actions
From: Avi Kivity <hidden>
Date: 2016-06-15 22:43:37
Johannes Schindelin wrote:
Hi, On Sat, 29 Sep 2007, Avi Kivity wrote:quoted
Johannes Schindelin wrote:quoted
When you do many rebases, you can get annoyed by having to type out the actions "edit" or "squash" in total. This commit helps that, by allowing you to enter "e" instead of "edit", or "s" instead of "squash", and it also plays nice with "merge" or "amend" as synonyms to "squash".Can we make "amend" like squash, except that it keeps the first commit's authorship instead of the second? I often merge a commit with some minor fix that comes later, and usually want to keep the original author record.I do not necessarily think it is not doable, but I have different suggestion to you: If you amend the commit with a minor fix that comes later, why not do "rebase -i" _before_ applying the fix, and then using "edit" on the respective commit?
This is what I do now. Edit the commit, cherry-pick -n, and commit --amend. But it's less pleasant than using the rebase --interactive interface. [This is part of the workflow to prepare a patchset for submitting upstream; I don't edit commits on my master branch]
That way you can even test the result easily, which you cannot do with "squash".
Usually these are trivial fixes, and have already been tested by being included in my main branch. -- Any sufficiently difficult bug is indistinguishable from a feature.