From 06cdac5ab61eaf129cb3a14b7538b05ca53d606f Mon Sep 17 00:00:00 2001 From: Michael J Gruber Date: Wed, 15 Sep 2010 22:47:42 +0200 Subject: [PATCH] git-reset.txt: use "working tree" consistently as per git help glossary Signed-off-by: Michael J Gruber Signed-off-by: Junio C Hamano --- Documentation/git-reset.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Documentation/git-reset.txt b/Documentation/git-reset.txt index 8762a0c6b9..6c94f83dad 100644 --- a/Documentation/git-reset.txt +++ b/Documentation/git-reset.txt @@ -16,12 +16,12 @@ DESCRIPTION ----------- In the first and second form, copy entries from to the index. In the third form, set the current branch head to , optionally -modifying index and worktree to match. The defaults to HEAD +modifying index and working tree to match. The defaults to HEAD in all forms. 'git reset' [-q] [] [--] ...:: This form resets the index entries for all to their - state at the . (It does not affect the worktree, nor + state at the . (It does not affect the working tree, nor the current branch.) + This means that `git reset ` is the opposite of `git add @@ -184,7 +184,7 @@ tip of the current branch in ORIG_HEAD, so resetting hard to it brings your index file and the working tree back to that state, and resets the tip of the branch to that commit. -Undo a merge or pull inside a dirty work tree:: +Undo a merge or pull inside a dirty working tree:: + ------------ $ git pull <1> @@ -257,7 +257,7 @@ Suppose you are working on something and you commit it, and then you continue working a bit more, but now you think that what you have in your working tree should be in another branch that has nothing to do with what you committed previously. You can start a new branch and -reset it while keeping the changes in your work tree. +reset it while keeping the changes in your working tree. + ------------ $ git tag start @@ -348,11 +348,11 @@ in state D). --keep B C C "reset --merge" is meant to be used when resetting out of a conflicted -merge. Any mergy operation guarantees that the work tree file that is +merge. Any mergy operation guarantees that the working tree file that is involved in the merge does not have local change wrt the index before -it starts, and that it writes the result out to the work tree. So if +it starts, and that it writes the result out to the working tree. So if we see some difference between the index and the target and also -between the index and the work tree, then it means that we are not +between the index and the working tree, then it means that we are not resetting out from a state that a mergy operation left after failing with a conflict. That is why we disallow --merge option in this case. -- 2.11.4.GIT