I've packed commits using git rebase -i HEAD~5 After this operation I've noticed that one of them must be separated. I've tried to use interactive mode from this manual https://git-scm.com/docs/git-rebase#_splitting_commits
git rebase --interactive
But there is only
noop
# Rebase 0349ada..0349ada onto 0349ada (1 command(s))
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
So i do not understand how to indicate commit for splitting