git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git-prompt.sh incompatible with non-basic global grep.patternType
@ 2016-07-18 22:56 Richard Soderberg
  2016-07-19 11:24 ` Johannes Schindelin
  2016-07-20 13:42 ` Jeff King
  0 siblings, 2 replies; 14+ messages in thread
From: Richard Soderberg @ 2016-07-18 22:56 UTC (permalink / raw)
  To: git

Hi, I wanted to report something interesting that I found while
tracing a severe slowdown in git-prompt.sh.

https://github.com/git/git/commit/6d158cba282f22fa1548af1188f78042fed30aed#diff-f37c4f4a898819f0ca4b5ff69e81d4d9R141

Way back in this commit, someone added a useful chunk of code that
works perfectly with svn+ssh:// URLs under basic regexes:

+ local svn_upstream=($(git log --first-parent -1 \
+ --grep="^git-svn-id: \(${svn_url_pattern:2}\)" 2>/dev/null))

However, if I switch over to Perl regexes (or Extended):

git config --global grep.patternType perl

Then the command runs for one wall clock second and shows incorrect
results on my repository. I eventually traced this to an issue with
the regular expression provided, assuming the svn repository url is
"svn+ssh://...":

git log ... --grep="^git-svn-id: \(svn+ssh://...\)" 2>/dev/null

The + sign isn't escaped in git-prompt.sh, which under non-basic
regexes causes the match to fail entirely.

 - R.

ps. git log --basic-regexp does not fix the issue, as for unknown
reasons (I'll start another thread) the command-line option doesn't
override grep.patternType.

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2016-07-25 16:16 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-18 22:56 git-prompt.sh incompatible with non-basic global grep.patternType Richard Soderberg
2016-07-19 11:24 ` Johannes Schindelin
2016-07-19 14:14   ` Richard Soderberg
2016-07-19 14:35     ` Johannes Schindelin
2016-07-20 13:42 ` Jeff King
2016-07-20 20:10   ` Junio C Hamano
2016-07-20 20:52     ` Jeff King
2016-07-22 19:21       ` Junio C Hamano
2016-07-22 19:28         ` Jeff King
2016-07-22 19:51           ` Junio C Hamano
2016-07-22 20:05             ` Jeff King
2016-07-22 20:33               ` Junio C Hamano
2016-07-22 23:28         ` Eric Sunshine
2016-07-25 16:16           ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).