On 2007.12.01 06:02:23 -0800, Jakub Narebski wrote: > Tilman Schmidt <tilman@xxxxxxx> writes: > > > Let's say that following the scheme laid out in > > "Everyday GIT ...", chapter "Individual Developer (Participant)". > > I have produced a patch, submitted it to LKML, received a few > > comments, committed appropriate changes to my local git tree, > > and now want to submit a revised patch. How do I do that? > > If you have original commit and commit with corrections on top of it, > do a squash rebase using "git rebase -i" (interactive), or do a squash > merge. > > In the future it would be better to just amend ("git commit --amend") > original commit (or if you are using StGIT, "stg refresh" it). For completeness: To use "git commit --amend" for any but the latest commit, you use rebase -i, too. Just change the "pick" for the commit you want to amend to "edit". Rebasing will stop _after_ applying that commit and you can amend it. Björn - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html