Re: [PATCH 04/12] t: stop using GIT_CONFIG to cross repo boundaries

2014-03-24 Thread Jeff King
On Fri, Mar 21, 2014 at 02:26:02PM -0700, Junio C Hamano wrote: > Jeff King writes: > > > Some tests want to check or set config in another > > repository. E.g., t1000 creates repositories and makes sure > > that their core.bare and core.worktree settings are what we > > expect. We can do this w

Re: [PATCH 04/12] t: stop using GIT_CONFIG to cross repo boundaries

2014-03-21 Thread Junio C Hamano
Jeff King writes: > Some tests want to check or set config in another > repository. E.g., t1000 creates repositories and makes sure > that their core.bare and core.worktree settings are what we > expect. We can do this with: > > GIT_CONFIG=$repo/.git/config git config ... > > but it better show

[PATCH 04/12] t: stop using GIT_CONFIG to cross repo boundaries

2014-03-20 Thread Jeff King
Some tests want to check or set config in another repository. E.g., t1000 creates repositories and makes sure that their core.bare and core.worktree settings are what we expect. We can do this with: GIT_CONFIG=$repo/.git/config git config ... but it better shows the intent to just enter the rep