]> git.ipfire.org Git - thirdparty/git.git/commitdiff
git-reset.txt: mention 'ORIG_HEAD' in the Description
authorPhilippe Blain <levraiphilippeblain@gmail.com>
Tue, 10 Jan 2023 13:15:18 +0000 (13:15 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 13 Jan 2023 17:55:45 +0000 (09:55 -0800)
The fact that 'git reset' writes 'ORIG_HEAD' before changing HEAD is
mentioned in an example, but is missing from the 'Description' section.

Mention it in the discussion of the "'git reset' [<mode>] [<commit>]"
form of the command.

Signed-off-by: Philippe Blain <levraiphilippeblain@gmail.com>
Acked-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-reset.txt

index 01cb4c9b9c56a7685f3a8d73fd91cadf5ce7a9e6..79ad5643eedb82ce0d884c0695e1bba8440f8985 100644 (file)
@@ -49,7 +49,8 @@ section of linkgit:git-add[1] to learn how to operate the `--patch` mode.
 'git reset' [<mode>] [<commit>]::
        This form resets the current branch head to `<commit>` and
        possibly updates the index (resetting it to the tree of `<commit>`) and
-       the working tree depending on `<mode>`. If `<mode>` is omitted,
+       the working tree depending on `<mode>`. Before the operation, `ORIG_HEAD`
+       is set to the tip of the current branch. If `<mode>` is omitted,
        defaults to `--mixed`. The `<mode>` must be one of the following:
 +
 --