From 7131d015d0689438281cb4633976441b0f2b9c90 Mon Sep 17 00:00:00 2001 From: Christophe Naud-Dulude Date: Wed, 30 Jul 2014 14:59:12 -0700 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c745e82..4f9d249 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ If you are working in a branch that is/will become a pull-request against `maste (my-branch)$ git rebase -i master ``` -If you aren't working against another branch you'll have to rebase relative to your `HEAD`. If you want to squish the last 2 commits, for example, you'll have to rebase against `HEAD~2`. For the last 3, `HEAD~3`, etc. +If you aren't working against another branch you'll have to rebase relative to your `HEAD`. If you want to squash the last 2 commits, for example, you'll have to rebase against `HEAD~2`. For the last 3, `HEAD~3`, etc. ``` (master)$ git rebase -i HEAD~2