diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2017-05-25 20:05:24 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-26 12:59:05 +0900 |
commit | 7531a2dd876994479484968d361e18b70b2c764e (patch) | |
tree | ba5d003f24a2feab39e6702001fc8a5766f9542f /Documentation | |
parent | 9ec726a4120bb219530faf988198a704ec7dd1f1 (diff) | |
download | git-7531a2dd876994479484968d361e18b70b2c764e.tar.gz git-7531a2dd876994479484968d361e18b70b2c764e.tar.xz |
log: add -P as a synonym for --perl-regexp
Add a short -P option as a synonym for the longer --perl-regexp, for
consistency with the options the corresponding grep invocations
accept.
This was intentionally omitted in commit 727b6fc3ed ("log --grep:
accept --basic-regexp and --perl-regexp", 2012-10-03) for unspecified
future use.
Make it consistent with "grep" rather than to keep it open for future
use, and to avoid the confusion of -P meaning different things for
grep & log, as is the case with the -G option.
As noted in the aforementioned commit the --basic-regexp option can't
have a corresponding -G argument, as the log command already uses that
for -G<regex>.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/rev-list-options.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/rev-list-options.txt b/Documentation/rev-list-options.txt index a46f70c2b..9c44eae55 100644 --- a/Documentation/rev-list-options.txt +++ b/Documentation/rev-list-options.txt @@ -91,6 +91,7 @@ endif::git-rev-list[] Consider the limiting patterns to be fixed strings (don't interpret pattern as a regular expression). +-P:: --perl-regexp:: Consider the limiting patterns to be Perl-compatible regular expressions. |