]> git.phdru.name Git - git-wiki.git/commitdiff
Change wording about ``git grep`` and ``less +/$pattern``
authorOleg Broytman <phd@phdru.name>
Wed, 9 Sep 2015 18:00:41 +0000 (21:00 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 9 Sep 2015 18:00:41 +0000 (21:00 +0300)
pep-git.txt

index 80d2a8466fae3bf762b14175aee56c3131ff8d4e..d7eb1996f168abe73d025853bcc07402931dce49 100644 (file)
@@ -784,9 +784,12 @@ but you can use your editor::
 
     $ git grep -Ovim # but not -O vim
 
-BTW, there is a difference between running ``git grep -O`` and ``git
-grep -Oless`` - in the latter case ``git grep`` passes ``+/pattern``
-option to ``less``.
+BTW, if git is instructed to use ``less`` as the pager (i.e., if pager
+is not configured in git at all it uses ``less`` by default, or if it
+gets ``less`` from PAGER environment variable, or if it was configured
+with ``git config --global core.pager less``, or ``less`` is used in
+the command ``git grep -Oless``) ``git grep`` passes ``+/$pattern``
+option to ``less`` which is quite convenient.
 
 
 bash/zsh completion