From 93d59f9d50fcf00f0152b6182f53e4e195349a67 Mon Sep 17 00:00:00 2001 From: vishal2599 <44281842+vishal2599@users.noreply.github.com> Date: Sun, 4 Nov 2018 17:44:56 +0530 Subject: [PATCH] nohyphen index.md (#21416) No hyphen needed between word unstaged . --- 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 49ea1aba82..71b57e5c49 100644 --- a/guide/english/git/git-checkout/index.md +++ b/guide/english/git/git-checkout/index.md @@ -37,7 +37,7 @@ git checkout -B BRANCH-NAME START-POINT If the `BRANCH-NAME` branch doesn't exist, Git will create it and start it at `START-POINT`. If the `BRANCH-NAME` branch already exists, then Git resets the branch to `START-POINT`. This is equivalent to running `git branch` with `-f`. ### Force a Checkout -You can pass the `-f` or `--force` option with the `git checkout` command to force Git to switch branches, even if you have un-staged changes (in other words, the index of the working tree differs from `HEAD`). Basically, it can be used to throw away local changes. +You can pass the `-f` or `--force` option with the `git checkout` command to force Git to switch branches, even if you have unstaged changes (in other words, the index of the working tree differs from `HEAD`). Basically, it can be used to throw away local changes. When you run the following command, Git will ignore unmerged entries: