aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-bisect.txt
diff options
context:
space:
mode:
authorDavid J. Mellor <dmellor@whistlingcat.com>2009-03-25 20:44:44 -0700
committerJunio C Hamano <gitster@pobox.com>2009-03-25 20:47:29 -0700
commit19fa5e8c4d62d445b822e0d0d87a4f995e6c863f (patch)
treeb3529ffed1baf2a869bb7508fd43bf00f95e2425 /Documentation/git-bisect.txt
parentcd747dc6dcb18f10b90fd8a1f8831b1da3551354 (diff)
downloadgit-19fa5e8c4d62d445b822e0d0d87a4f995e6c863f.tar.gz
Documentation: Remove spurious uses of "you" in git-bisect.txt.
These were added by accident in a42dea3. This patch also rewords the description of how ranges of commits can be skipped. Signed-off-by: David J. Mellor <dmellor@whistlingcat.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-bisect.txt')
-rw-r--r--Documentation/git-bisect.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/git-bisect.txt b/Documentation/git-bisect.txt
index f74354f0fe..e5862b9dbb 100644
--- a/Documentation/git-bisect.txt
+++ b/Documentation/git-bisect.txt
@@ -151,7 +151,7 @@ $ git reset --hard HEAD~3 # try 3 revisions before what
# was suggested
------------
-Then you compile and test the chosen revision. Afterwards you mark
+Then compile and test the chosen revision, and afterwards mark
the revision as good or bad in the usual manner.
Bisect skip
@@ -175,8 +175,8 @@ using the "'<commit1>'..'<commit2>'" notation. For example:
$ git bisect skip v2.5..v2.6
------------
-This tells the bisect process that no commit between `v2.5` excluded and
-`v2.6` included should be tested.
+This tells the bisect process that no commit after `v2.5`, up to and
+including `v2.6`, should be tested.
Note that if you also want to skip the first commit of the range you
would issue the command: