Note: I know this is rewriting history, will change all the hashes, and mess everyone else up.
I want to take a commit, and remove its parent. Specifically, the commit should now look like an initial commit. That means its diff will change; it will look as though all the files were created by that commit, at that point in history.
How does one do this? (I could, of course, go edit the commit object, but then the commits wouldn't point to each other.) Also, I would like to do this on a new branch (meaning that there are now two histories: the original one, and another where the commit is the initial commit.)
You can't modify an existing commit without changing its hash. But you can make a new commit that looks like the old commit, but without its parents.
Here, I am creating a new commit with a new commit message, but copying the tree of the current HEAD:
This will print out the commit ID of the new commit.
If you want to make the current branch (e.g:
master
) point to this new commit with new parents, you can do it all in one step like this: