Re: git name-rev segfault

2019-07-29 Thread Tamas Papp
Thanks for letting me know and for the corrections too. Cheers, tamas On 7/29/19 9:50 PM, Jeff King wrote: On Mon, Jul 29, 2019 at 04:19:47PM +0200, Tamas Papp wrote: Generate 100k file into a repository: #!/bin/bash rm -rf .git test.file git init git config user.email a@b git config use

Re: git name-rev segfault

2019-07-29 Thread Jeff King
On Mon, Jul 29, 2019 at 04:19:47PM +0200, Tamas Papp wrote: > Generate 100k file into a repository: > > #!/bin/bash > > rm -rf .git test.file > git init > git config user.email a@b > git config user.name c > > time for i in {1..10} > do >   [ $((i % 2)) -eq 1 ] && echo $i>test.file || echo

git name-rev segfault

2019-07-29 Thread Tamas Papp
hi All, We ran into a segfault with all version of command line git. We are able to reproduce this issue by this way: Generate 100k file into a repository: #!/bin/bash rm -rf .git test.file git init git config user.email a@b git config user.name c time for i in {1..10} do   [ $((i % 2)