summaryrefslogtreecommitdiffstats
path: root/git-bisect.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-11-15 14:57:08 +0900
committerJunio C Hamano <gitster@pobox.com>2017-11-15 14:57:08 +0900
commitb72f60303287a25c0a0305120b203276faca07fa (patch)
tree266b78e12ffe9ea48891de6b57c53660ecd00482 /git-bisect.txt
parent3a9c034734bf5aa3e3b139e72a6b0b96ddf0b3e9 (diff)
downloadgit-htmldocs-b72f60303287a25c0a0305120b203276faca07fa.tar.gz
Autogenerated HTML docs for v2.15.0-276-g89ea79
Diffstat (limited to 'git-bisect.txt')
-rw-r--r--git-bisect.txt13
1 files changed, 6 insertions, 7 deletions
diff --git a/git-bisect.txt b/git-bisect.txt
index 6c42abf07..4a1417bdc 100644
--- a/git-bisect.txt
+++ b/git-bisect.txt
@@ -23,7 +23,7 @@ on the subcommand:
git bisect terms [--term-good | --term-bad]
git bisect skip [(<rev>|<range>)...]
git bisect reset [<commit>]
- git bisect visualize
+ git bisect (visualize|view)
git bisect replay <logfile>
git bisect log
git bisect run <cmd>...
@@ -193,24 +193,23 @@ git bisect start --term-new fixed --term-old broken
Then, use `git bisect <term-old>` and `git bisect <term-new>` instead
of `git bisect good` and `git bisect bad` to mark commits.
-Bisect visualize
-~~~~~~~~~~~~~~~~
+Bisect visualize/view
+~~~~~~~~~~~~~~~~~~~~~
To see the currently remaining suspects in 'gitk', issue the following
-command during the bisection process:
+command during the bisection process (the subcommand `view` can be used
+as an alternative to `visualize`):
------------
$ git bisect visualize
------------
-`view` may also be used as a synonym for `visualize`.
-
If the `DISPLAY` environment variable is not set, 'git log' is used
instead. You can also give command-line options such as `-p` and
`--stat`.
------------
-$ git bisect view --stat
+$ git bisect visualize --stat
------------
Bisect log and bisect replay