Re: -B option of git log

2013-02-22 Thread Eckhard Maass
On 02/22/2013 01:57 AM, Jeff King wrote: I think the problem is that your test file is so tiny that it falls afoul of git's MINIMUM_BREAK_SIZE heuristic of 400 bytes (which prevents false positives on tiny files). Try replacing your Lorem ipsum echo with something like seq 1 150, and I think

Re: -B option of git log

2013-02-21 Thread Jeff King
On Fri, Feb 22, 2013 at 01:44:00AM +0100, Eckhard Maass wrote: Let me get a setup: $ git init . Initialized empty Git repository in /tmp/t2/.git/ $ echo 'Lorem ipsum doler sed. Lorem ipsum doler sed. Lorem ipsum doler sed. Lorem ipsum doler sed.' a $ git add a $ git commit -m 'Init.'