I want to split the first commit in my git repository, but I cannot use rebase to do this because a parent node is required. I found Edit the root commit in Git? useful for modifying the first commit, but not splitting it. How can I split it?
You can just follow exactly the same process in the question you've linked to, but after checking out the root commit you can use git commit --amend
to modify the original commit and then git commit
to make an additional commit before continuing the with the rebase command.
Depending on how you want to split the commit you can use git rm --cached
to remove files that you want to add at the second commit before the initial git commit --amend
and edit any files that you want to look different before calling git add
on those files, again before you call git commit --amend
.
After calling git commit --amend
, to make sure that you commit exactly the state of the original root commit you can call:
git checkout <sha1-of-original-root> -- .
before calling git commit
to make the second commit of the split root commit.
git reset --hard
here. You might use git reset <sha1-of-original-root> -- .
, but that will not “restore” the working tree, only the index. Probably the best idea is git checkout <sha1-of-original-root> -- .
which will update the index and working tree but not HEAD (leaving you ready to commit the second part of the split (original root) commit). The main idea here is that both reset and checkout will change HEAD except when you give them a path argument. –
Rato --hard
but then didn't actually write that. The checkout solution is better. –
Uniocular git checkout <sha1-of-original-root> -- .
. It's worth noting down the hash of the original root commit beforehand to have it handy. –
Flacon You can use the --root
option to tell rebase
that you want to rewrite the root/first commit:
$ git rebase --interactive --root
Then the root commit will show up in the rebase TODO list, and you can select to edit it:
edit <root commit sha> <original message>
pick <other commit sha> <message>
...
This is the explanation of --root
from the Git rebase docs:
Rebase all commits reachable from
<branch>
, instead of limiting them with an<upstream>
. This allows you to rebase the root commit(s) on a branch.
© 2022 - 2024 — McMap. All rights reserved.
git rebase --root -i
, add ab
orbreak
line before the root commit, and mark the root commit withs
/skip
. This way you the rebase stops before any commits, you can useget checkout <root hash> -- .
to get the code from the root commit, and proceed like with at usual split. – Branching