aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-checkout.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-07-10 14:17:54 -0700
committerJunio C Hamano <gitster@pobox.com>2015-07-10 14:17:54 -0700
commite12fc40a154d6bd227de0596d9c0f33bb582d868 (patch)
tree6b745b4ce10e86d16bbbc52a2fd19229d819625c /Documentation/git-checkout.txt
parentbbddc516649d1bc8774b6991a6ac769c92e99369 (diff)
parentc4ac525c847fe7058a00bcc0e0f2cb436f5e7976 (diff)
downloadgit-e12fc40a154d6bd227de0596d9c0f33bb582d868.tar.gz
Merge branch 'tb/checkout-doc'
Doc update. * tb/checkout-doc: git-checkout.txt: document "git checkout <pathspec>" better
Diffstat (limited to 'Documentation/git-checkout.txt')
-rw-r--r--Documentation/git-checkout.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-checkout.txt b/Documentation/git-checkout.txt
index d263a5652f..2df6d0d4b4 100644
--- a/Documentation/git-checkout.txt
+++ b/Documentation/git-checkout.txt
@@ -3,7 +3,7 @@ git-checkout(1)
NAME
----
-git-checkout - Checkout a branch or paths to the working tree
+git-checkout - Switch branches or restore working tree files
SYNOPSIS
--------
@@ -89,6 +89,10 @@ Omitting <branch> detaches HEAD at the tip of the current branch.
(i.e. commit, tag or tree) to update the index for the given
paths before updating the working tree.
+
+'git checkout' with <paths> or `--patch` is used to restore modified or
+deleted paths to their original contents from the index or replace paths
+with the contents from a named <tree-ish> (most often a commit-ish).
++
The index may contain unmerged entries because of a previous failed merge.
By default, if you try to check out such an entry from the index, the
checkout operation will fail and nothing will be checked out.