From bc7512fe9abfc85dcccf23900f1003f6fe715619 Mon Sep 17 00:00:00 2001 From: ndreys Date: Tue, 1 Nov 2011 18:17:52 +0700 Subject: [PATCH] 0_Interactive_Rebasing.markdown: Fix missed -m option --- text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown b/text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown index defcc336..628a6d24 100644 --- a/text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown +++ b/text/14_Interactive_Rebasing/0_ Interactive_Rebasing.markdown @@ -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.