* Git submodule first time update with proxy
@ 2015-01-23 2:50 Robert Dailey
2015-01-23 22:13 ` Chris Packham
0 siblings, 1 reply; 5+ messages in thread
From: Robert Dailey @ 2015-01-23 2:50 UTC (permalink / raw)
To: Git
I have a submodule using HTTP URL. I do this:
$ git submodule init MySubmodule
$ git submodule update MySubmodule
The 2nd command fails because the HTTP URL cannot be resolved, this is
because it requires a proxy. I have "http.proxy" setup properly in the
.git/config of my parent git repository, so I was hoping the submodule
update function would have a way to specify it to inherit the proxy
value from the parent config.
How can I set up my submodule?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Git submodule first time update with proxy
2015-01-23 2:50 Git submodule first time update with proxy Robert Dailey
@ 2015-01-23 22:13 ` Chris Packham
2015-01-24 4:23 ` Robert Dailey
0 siblings, 1 reply; 5+ messages in thread
From: Chris Packham @ 2015-01-23 22:13 UTC (permalink / raw)
To: Robert Dailey; +Cc: Git
Hi,
On Fri, Jan 23, 2015 at 3:50 PM, Robert Dailey <rcdailey.lists@gmail.com> wrote:
> I have a submodule using HTTP URL. I do this:
>
> $ git submodule init MySubmodule
> $ git submodule update MySubmodule
>
> The 2nd command fails because the HTTP URL cannot be resolved, this is
> because it requires a proxy. I have "http.proxy" setup properly in the
> .git/config of my parent git repository, so I was hoping the submodule
> update function would have a way to specify it to inherit the proxy
> value from the parent config.
Your not the first to suggest it and you probably won't be the last.
It is hard to decide _which_ config variables, if any, should
propagate from the parent. What works for one use-case may not
necessarily work for another.
> How can I set up my submodule?
Probably the easiest thing would be to make your http.proxy
configuration global i.e.
$ git config --global http.proxy ....
If you don't want to make it a global setting you can setup the
submodule configuration after running init but before running update
i.e.
$ git submodule init MySubmodule
$ (cd MySubmodule && git config http.proxy ...)
$ git submodule update MySubmodule
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Git submodule first time update with proxy
2015-01-23 22:13 ` Chris Packham
@ 2015-01-24 4:23 ` Robert Dailey
2015-01-24 4:45 ` Robert Dailey
0 siblings, 1 reply; 5+ messages in thread
From: Robert Dailey @ 2015-01-24 4:23 UTC (permalink / raw)
To: Chris Packham; +Cc: Git
On Fri, Jan 23, 2015 at 4:13 PM, Chris Packham <judge.packham@gmail.com> wrote:
> Hi,
>
> On Fri, Jan 23, 2015 at 3:50 PM, Robert Dailey <rcdailey.lists@gmail.com> wrote:
>> I have a submodule using HTTP URL. I do this:
>>
>> $ git submodule init MySubmodule
>> $ git submodule update MySubmodule
>>
>> The 2nd command fails because the HTTP URL cannot be resolved, this is
>> because it requires a proxy. I have "http.proxy" setup properly in the
>> .git/config of my parent git repository, so I was hoping the submodule
>> update function would have a way to specify it to inherit the proxy
>> value from the parent config.
>
> Your not the first to suggest it and you probably won't be the last.
> It is hard to decide _which_ config variables, if any, should
> propagate from the parent. What works for one use-case may not
> necessarily work for another.
>
>> How can I set up my submodule?
>
> Probably the easiest thing would be to make your http.proxy
> configuration global i.e.
>
> $ git config --global http.proxy ....
>
> If you don't want to make it a global setting you can setup the
> submodule configuration after running init but before running update
> i.e.
>
> $ git submodule init MySubmodule
> $ (cd MySubmodule && git config http.proxy ...)
> $ git submodule update MySubmodule
For some reason, the init call does not create the submodule
directory as you indicate. I also checked in .git/modules and it's not
there either.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Git submodule first time update with proxy
2015-01-24 4:23 ` Robert Dailey
@ 2015-01-24 4:45 ` Robert Dailey
2015-01-24 5:47 ` Chris Packham
0 siblings, 1 reply; 5+ messages in thread
From: Robert Dailey @ 2015-01-24 4:45 UTC (permalink / raw)
To: Chris Packham; +Cc: Git
On Fri, Jan 23, 2015 at 10:23 PM, Robert Dailey
<rcdailey.lists@gmail.com> wrote:
> On Fri, Jan 23, 2015 at 4:13 PM, Chris Packham <judge.packham@gmail.com> wrote:
>> Hi,
>>
>> On Fri, Jan 23, 2015 at 3:50 PM, Robert Dailey <rcdailey.lists@gmail.com> wrote:
>>> I have a submodule using HTTP URL. I do this:
>>>
>>> $ git submodule init MySubmodule
>>> $ git submodule update MySubmodule
>>>
>>> The 2nd command fails because the HTTP URL cannot be resolved, this is
>>> because it requires a proxy. I have "http.proxy" setup properly in the
>>> .git/config of my parent git repository, so I was hoping the submodule
>>> update function would have a way to specify it to inherit the proxy
>>> value from the parent config.
>>
>> Your not the first to suggest it and you probably won't be the last.
>> It is hard to decide _which_ config variables, if any, should
>> propagate from the parent. What works for one use-case may not
>> necessarily work for another.
>>
>>> How can I set up my submodule?
>>
>> Probably the easiest thing would be to make your http.proxy
>> configuration global i.e.
>>
>> $ git config --global http.proxy ....
>>
>> If you don't want to make it a global setting you can setup the
>> submodule configuration after running init but before running update
>> i.e.
>>
>> $ git submodule init MySubmodule
>> $ (cd MySubmodule && git config http.proxy ...)
>> $ git submodule update MySubmodule
>
> For some reason, the init call does not create the submodule
> directory as you indicate. I also checked in .git/modules and it's not
> there either.
Correction:
I have to deinit the submodule then init again, then the submodule dir
is created (but empty). When I run the git config command inside the
submodule directory, it silently returns and does not indicate
failure, however the final git submodule update command shows failure
to access the remote and then subsequently the submodule empty
directory is removed by Git.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Git submodule first time update with proxy
2015-01-24 4:45 ` Robert Dailey
@ 2015-01-24 5:47 ` Chris Packham
0 siblings, 0 replies; 5+ messages in thread
From: Chris Packham @ 2015-01-24 5:47 UTC (permalink / raw)
To: Robert Dailey; +Cc: Git
On Sat, Jan 24, 2015 at 5:45 PM, Robert Dailey <rcdailey.lists@gmail.com> wrote:
> On Fri, Jan 23, 2015 at 10:23 PM, Robert Dailey
> <rcdailey.lists@gmail.com> wrote:
>> On Fri, Jan 23, 2015 at 4:13 PM, Chris Packham <judge.packham@gmail.com> wrote:
>>> Hi,
>>>
>>> On Fri, Jan 23, 2015 at 3:50 PM, Robert Dailey <rcdailey.lists@gmail.com> wrote:
>>>> I have a submodule using HTTP URL. I do this:
>>>>
>>>> $ git submodule init MySubmodule
>>>> $ git submodule update MySubmodule
>>>>
>>>> The 2nd command fails because the HTTP URL cannot be resolved, this is
>>>> because it requires a proxy. I have "http.proxy" setup properly in the
>>>> .git/config of my parent git repository, so I was hoping the submodule
>>>> update function would have a way to specify it to inherit the proxy
>>>> value from the parent config.
>>>
>>> Your not the first to suggest it and you probably won't be the last.
>>> It is hard to decide _which_ config variables, if any, should
>>> propagate from the parent. What works for one use-case may not
>>> necessarily work for another.
>>>
>>>> How can I set up my submodule?
>>>
>>> Probably the easiest thing would be to make your http.proxy
>>> configuration global i.e.
>>>
>>> $ git config --global http.proxy ....
>>>
>>> If you don't want to make it a global setting you can setup the
>>> submodule configuration after running init but before running update
>>> i.e.
>>>
>>> $ git submodule init MySubmodule
>>> $ (cd MySubmodule && git config http.proxy ...)
>>> $ git submodule update MySubmodule
>>
>> For some reason, the init call does not create the submodule
>> directory as you indicate. I also checked in .git/modules and it's not
>> there either.
>
OK I must be wrong about that. I was working from memory. Trying it
now I see the error in my thinking
$ git submodule init bar
Submodule 'bar' (bar.git) registered for path 'bar'
I thought this meant that bar/.git (and .git/modules/bar) had been
created but as you point out I was wrong.
> Correction:
>
> I have to deinit the submodule then init again, then the submodule dir
> is created (but empty).
That's the default state of an uninitialized submodule.
> When I run the git config command inside the
> submodule directory, it silently returns and does not indicate
> failure, however the final git submodule update command shows failure
> to access the remote and then subsequently the submodule empty
> directory is removed by Git.
So it looks like the only solution to your problem right now is to use
git config --global for your proxy configuration.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-01-24 5:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-23 2:50 Git submodule first time update with proxy Robert Dailey
2015-01-23 22:13 ` Chris Packham
2015-01-24 4:23 ` Robert Dailey
2015-01-24 4:45 ` Robert Dailey
2015-01-24 5:47 ` Chris Packham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).