On Jul 27, 7:33 am, misha680 <[email protected]> wrote: > Dear All: > > I have heard great things about this > list:http://kerneltrap.org/mailarchive/git/2008/6/4/2025514 > > I love git rebase --interactive, but would like to have the same > functionality for editing the actual diffs themselves (e.g., two > commits back).
Not sure if this is what you wanted: * git rebase -i some_old_commit * Change 'pick' to 'edit' for commits that you're interested in * When git rebase pauses for you to edit commit, do 'git reset' leaving your files unstaged * Then invoke 'git add -e', and you should be able to edit your patch. Jeenu -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
