From e193db130bc4d662c8e4a81f28d62c7b24320ca7 Mon Sep 17 00:00:00 2001 From: Rachel Krupnick Date: Sun, 20 Jan 2019 15:59:38 -0500 Subject: [PATCH] Grammar fix (#29154) --- guide/english/git/git-checkout/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/git/git-checkout/index.md b/guide/english/git/git-checkout/index.md index b659ebbcbd7..6f0d2aa6cf0 100644 --- a/guide/english/git/git-checkout/index.md +++ b/guide/english/git/git-checkout/index.md @@ -7,11 +7,11 @@ The `git checkout` command switches between branches or restores working tree fi ### Checkout a specific commit -to checkout a specific commit, run the command: +To checkout a specific commit, run the command: ```shell git checkout specific-commit-id ``` -we can get the specific commit id's by running: +We can get the specific commit id's by running: ```shell git log ```