Re: [BUG] Halt during fetch on MacOS

2014-03-06 Thread Conley Owens
On Thu, Mar 6, 2014 at 1:16 PM, Jeff King wrote: > On Thu, Mar 06, 2014 at 10:24:49AM -0800, Junio C Hamano wrote: > >> > OK, I've tried using my own build from master, and I still get the same >> > results. >> > >> > I've done a little more investigation and discovered it always hangs at: >> > `

Re: [BUG] Halt during fetch on MacOS

2014-03-06 Thread Jeff King
On Thu, Mar 06, 2014 at 10:24:49AM -0800, Junio C Hamano wrote: > > OK, I've tried using my own build from master, and I still get the same > > results. > > > > I've done a little more investigation and discovered it always hangs at: > > `atexit(notify_parent);` in `run-command.c:start_command` >

Re: [BUG] Halt during fetch on MacOS

2014-03-06 Thread Junio C Hamano
Conley Owens writes: > On Fri, Feb 28, 2014 at 3:26 PM, Conley Owens wrote: >> $ git --version # This is just the git from MacPorts >> git version 1.8.5.5 >> $ sw_vers >> ProductName:Mac OS X >> ProductVersion: 10.8.5 >> BuildVersion: 12F45 > > OK, I've tried using my own build from maste

Re: [BUG] Halt during fetch on MacOS

2014-03-05 Thread Conley Owens
On Fri, Feb 28, 2014 at 3:26 PM, Conley Owens wrote: > $ git --version # This is just the git from MacPorts > git version 1.8.5.5 > $ sw_vers > ProductName:Mac OS X > ProductVersion: 10.8.5 > BuildVersion: 12F45 OK, I've tried using my own build from master, and I still get the same result

Re: [BUG] Halt during fetch on MacOS

2014-03-04 Thread Jacopo Notarstefano
On Sun, Mar 2, 2014 at 3:02 AM, Kyle J. McKay wrote: > I can't reproduce, mostly, on Mac OS X 10.5.8 or 10.6.8. > > What I mean by mostly is that the very first time I ran the test script I > got approximately 36 of these errors: > > fatal: unable to access > 'https://android.googlesource.com/plat

Re: [BUG] Halt during fetch on MacOS

2014-03-03 Thread Conley Owens
On Fri, Feb 28, 2014 at 10:15 PM, Jeff King wrote: > On Fri, Feb 28, 2014 at 03:26:28PM -0800, Conley Owens wrote: > >> test.sh >> " >> #!/bin/bash >> rungit() { >> mkdir $1 >> GIT_DIR=$1 git init --bare >> echo '[remote "aosp"]' > $1/config >> e

Re: [BUG] Halt during fetch on MacOS

2014-03-03 Thread Conley Owens
On Sun, Mar 2, 2014 at 6:36 AM, Max Horn wrote: > > On 01.03.2014, at 00:26, Conley Owens wrote: > >> $ git --version # This is just the git from MacPorts >> git version 1.8.5.5 >> $ sw_vers >> ProductName:Mac OS X >> ProductVersion: 10.8.5 >> BuildVersion: 12F45 > > I cannot reproduce thi

Re: [BUG] Halt during fetch on MacOS

2014-03-02 Thread Max Horn
On 01.03.2014, at 00:26, Conley Owens wrote: > $ git --version # This is just the git from MacPorts > git version 1.8.5.5 > $ sw_vers > ProductName:Mac OS X > ProductVersion: 10.8.5 > BuildVersion: 12F45 I cannot reproduce this, neither with 1.8.5.5 nor with 1.9.0. I am also running Mac

Re: [BUG] Halt during fetch on MacOS

2014-03-01 Thread Kyle J. McKay
On Feb 28, 2014, at 22:15, Jeff King wrote: On Fri, Feb 28, 2014 at 03:26:28PM -0800, Conley Owens wrote: test.sh " #!/bin/bash rungit() { mkdir $1 GIT_DIR=$1 git init --bare echo '[remote "aosp"]' > $1/config echo 'url = https://android.googl

Re: [BUG] Halt during fetch on MacOS

2014-02-28 Thread Jeff King
On Fri, Feb 28, 2014 at 03:26:28PM -0800, Conley Owens wrote: > test.sh > " > #!/bin/bash > rungit() { > mkdir $1 > GIT_DIR=$1 git init --bare > echo '[remote "aosp"]' > $1/config > echo 'url = > https://android.googlesource.com/platform/exte

[BUG] Halt during fetch on MacOS

2014-02-28 Thread Conley Owens
$ git --version # This is just the git from MacPorts git version 1.8.5.5 $ sw_vers ProductName:Mac OS X ProductVersion: 10.8.5 BuildVersion: 12F45 test.sh " #!/bin/bash rungit() { mkdir $1 GIT_DIR=$1 git init --bare echo '[remote "aosp"]' > $1