Re: ZSH segmentation fault while completing git mv dir/

2013-03-11 Thread Jeff Epler
If it's dependent on eval `dircolors`, it suggests it might be dependent on the size of the environment. Maybe try with FOO=`perl -e 'print xx1000'` for various values of 1000... Jeff -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: Load testing of git

2013-02-24 Thread Jeff Epler
In 2012 there was a thread about git's performance on large repositories. One archive of the discussion begins here: http://mid.gmane.org/CB5074CF.3AD7A%25joshua.redstone%40fb.com The test repo has 4 million commits, linear history and about 1.3 million files. I'm not sure to what extent git

Re: [PATCH 1/1] Introduce new build variables INSTALL_MODE_EXECUTABLE and INSTALL_MODE_DATA.

2013-01-31 Thread Jeff Epler
I was not familiar with this behavior of 'install -d' that it tries to change the mode of an existing directory, but GNU coreutils 8.12.197-032bb certainly behaves as TJ reports. As a possible alternative, what about [ -d $(DESTDIR)$(main1dir) ] || $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir) so