Re: [PATCH] Let .git/config specify the url for submodules
From: Lars Hjemli <hidden>
Date: 2016-06-15 22:43:13
On 6/2/07, Sven Verdoolaege [off-list ref] wrote:
On Sat, Jun 02, 2007 at 09:13:55AM +0200, Lars Hjemli wrote:quoted
Then Sven suggested to create a submodule section for the url, which would allow $ name=$(GIT_CONFIG=.gitmodules git-config path."$path".submodule) $ url=$(GIT_CONFIG=.gitmodules git-config submodule."$name".url) But I don't see an easy way to do the mapping from path to url/submodule with: [submodule "xyzzylib"] path=lib url=git://xyzzy/lib-1.2.3 Suggestions?I'm not a shell programmer,
Me neither ;-)
but it could look something like this
$ name=$(git config --get-regexp 'submodule\..*\.path' | while read module modulepath; do if test "$modulepath" = "$path"; then echo $module | sed -e 's/^submodule.//' -e 's/.path//'; fi; done)Ahh, --get-regexp, thanks. Then this actually works: name=$(GIT_CONFIG=.gitmodules git-config --get-regexp 'submodule\..*\.path' 'lib' | sed -e 's/^submodule\.\(.*\)\.path lib$/\1/') But why would we want to design .gitmodules in a way that makes it hard to do the mapping from path to url? -- larsh