I copied a file and made a bunch of changes to it at the same time (i.e. in one commit). I then carried on making changes in subsequent commits. I now want to split that commit into two - one that just copies the file to its new location and one that modifies that file. How would I do that? If it was the most recent commit it would be easy, but this is way back in history now.
|
From git-rebase manual (SPLITTING COMMITS section)
|
||||
|
|
|
Easiest thing to do without an interactive rebase is (probably) to make a new branch starting at the commit before the one you want to split, cherry-pick -n the commit, reset, stash, commit the file move, reapply the stash and commit the changes, and then either merge with the former branch or cherry-pick the commits that followed. (Then switch the former branch name to the current head.) (It's probably better to follow MBOs advice and do an interactive rebase.) |
|||
|
|