Re: speeding up git pull from a busy gerrit instance over a slow link?

2017-07-03 Thread Noel Grandin
On 2017/06/30 11:59 PM, Jonathan Tan wrote: Out of curiosity, what is the timestamp difference between the first and last GIT_TRACE_PACKET log message containing "refs/changes"? Cut down log looks like: 08:37:17.734527 pkt-line.c:80 packet:fetch<

speeding up git pull from a busy gerrit instance over a slow link?

2017-06-30 Thread Noel Grandin
/*:refs/remotes/origin/* branch.master.remote=origin branch.master.merge=refs/heads/master branch.sdrshapeid.remote=origin branch.sdrshapeid.merge=refs/heads/master Thanks, Noel Grandin - snippet of packet trace --- 14:20:45.705091 pkt-line.c:80

possible minor bug: 'git apply --reject' unnecessarily touches files

2015-03-20 Thread Noel Grandin
issue, but it would help my build times, which are considerable when working on LibreOffice :-) Thanks, Noel Grandin Disclaimer: http://www.peralex.com/disclaimer.html -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More

Re: feature request: excluding files/paths from git grep

2015-03-04 Thread Noel Grandin
maybe that's just me. Thanks, Noel Grandin Disclaimer: http://www.peralex.com/disclaimer.html -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

feature request: excluding files/paths from git grep

2015-02-25 Thread Noel Grandin
when searching. What would be nice is a per-user/repo config setting that excludes certain files and paths from the 'git grep' search. Does this sound reasonable/acceptable? Thanks, Noel Grandin Disclaimer: http://www.peralex.com/disclaimer.html -- To unsubscribe from this list: send

Re: bug: git grep -P and multiline mode

2014-06-24 Thread Noel Grandin
On 2014-06-23 07:42 PM, Junio C Hamano wrote: Noel Grandin noelgran...@gmail.com writes: It looks like the perl regular expression multiline mode does not work with 'git grep' Yes, and deliberately so, to avoid having to think about things like how would a multi-line match interact

bug: git grep -P and multiline mode

2014-06-23 Thread Noel Grandin
Hi It looks like the perl regular expression multiline mode does not work with 'git grep' for example, something like git grep -P '(?s)foo.*?bar will not match a file in the repo where it has something like foo bar ie. split across two lines Regards, Noel Grandin

Re: [RFC/PATCH v4 1/3] add high resolution timer function to debug performance issues

2014-05-21 Thread Noel Grandin
On 2014-05-20 21:11, Karsten Blees wrote: * implement Mac OSX version using mach_absolute_time Note that unlike the Windows and Linux APIs, mach_absolute_time does not do correction for frequency-scaling and cross-CPU synchronization with the TSC. I'm not aware of anything else that