From 1309330fa23f68c0ee6f005e6299565053ab6076 Mon Sep 17 00:00:00 2001 From: thinkinbee Date: Wed, 17 Oct 2018 23:08:39 +0530 Subject: [PATCH] fix typo (#19640) --- guide/english/git/git-checkout/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/git/git-checkout/index.md b/guide/english/git/git-checkout/index.md index f1ec375daa..49cd75daee 100644 --- a/guide/english/git/git-checkout/index.md +++ b/guide/english/git/git-checkout/index.md @@ -23,7 +23,7 @@ git checkout BRANCH-NAME Generally, Git won't let you checkout another branch unless your working directory is clean, because you would lose any working directory changes that aren't committed. You have three options to handle your changes: 1) trash them, 2) commit them, or 3) stash them. ### Checkout a New Branch -To create and checkout out a new branch with a single command, you can use: +To create and checkout a new branch with a single command, you can use: ```shell git checkout -b NEW-BRANCH-NAME ```