diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-12-15 21:32:42 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-12-15 23:08:28 +0100 |
commit | 2047b2c28cb456f60b6e6876e1fc0330e436fad5 (patch) | |
tree | c0cc7f60ce35a79c418d44378f2fc8a13feb42d9 /Documentation/git-bisect.txt | |
parent | git.txt: HEAD is not that special (diff) | |
download | git-2047b2c28cb456f60b6e6876e1fc0330e436fad5.tar.xz git-2047b2c28cb456f60b6e6876e1fc0330e436fad5.zip |
git-bisect.txt: BISECT_HEAD is not that special
The description of "git bisect --no-checkout" called BISECT_HEAD a
"special ref", but there is nothing special about it. It merely is
yet another pseudoref.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-bisect.txt')
-rw-r--r-- | Documentation/git-bisect.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-bisect.txt b/Documentation/git-bisect.txt index 191b4a42b6..aa02e46224 100644 --- a/Documentation/git-bisect.txt +++ b/Documentation/git-bisect.txt @@ -362,7 +362,7 @@ OPTIONS --no-checkout:: + Do not checkout the new working tree at each iteration of the bisection -process. Instead just update a special reference named `BISECT_HEAD` to make +process. Instead just update the reference named `BISECT_HEAD` to make it point to the commit that should be tested. + This option may be useful when the test you would perform in each step |