Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ the rebase dropped you to the command line :

$ git reset HEAD^
$ git add file1
$ git commit 'first part of split commit'
$ git commit -m 'first part of split commit'
$ git add file2
$ git commit 'second part of split commit'
$ git commit -m 'second part of split commit'
$ git rebase --continue

And now instead of 5 commits, you would have 6.
Expand Down