Re: [PATCHv3 1/5] submodule: prepare recursive path from non root directory

2016-03-25 Thread Junio C Hamano
Stefan Beller writes: > diff --git a/git-submodule.sh b/git-submodule.sh > index 43c68de..d83608c 100755 > --- a/git-submodule.sh > +++ b/git-submodule.sh > @@ -825,8 +825,9 @@ Maybe you want to use 'update --init'?")" > if test -n "$recursive" > then >

[PATCHv3 1/5] submodule: prepare recursive path from non root directory

2016-03-25 Thread Stefan Beller
One of the first things that happens in most submodule sub commands is git submodule--helper list --prefix "$wt_prefix" Currently the passed --prefix is used for doing path calculation as if we were in that path relative to the repository root, which is why we need to pass "$wt_prefix". A mor