* Why is networking GIT refusing me?
@ 2010-12-18 16:02 Piotr Hosowicz
2010-12-18 16:11 ` Kyle McMartin
2010-12-18 16:30 ` Thorsten Kranzkowski
0 siblings, 2 replies; 7+ messages in thread
From: Piotr Hosowicz @ 2010-12-18 16:02 UTC (permalink / raw)
To: linux-kernel
Hello,
I tried to update my Linux tree with the newest networking source vand
tried to run:
git remote add networking
master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git master
git remote update
The second one asks me if the SSH key is valid, and then asks me for the
root password which I obviously do not know and cannot update. Where to
get newest networking source by GIT?
Regards,
Piotr Hosowicz
--
Z cyklu "Uroki demokracji", czyli pytania i odpowiedzi w teledurniejach:
- Jak długo trwała wojna sześciodniowa między Izraelem a Egiptem?
- (po dłuższym namyśle): Czternaście dni.
NP: Peter Green Splinter Group - Big Change Is Gonna Come
NB: 2.6.37-rc6-git3
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why is networking GIT refusing me?
2010-12-18 16:02 Why is networking GIT refusing me? Piotr Hosowicz
@ 2010-12-18 16:11 ` Kyle McMartin
2010-12-18 16:18 ` Piotr Hosowicz
2010-12-18 16:30 ` Thorsten Kranzkowski
1 sibling, 1 reply; 7+ messages in thread
From: Kyle McMartin @ 2010-12-18 16:11 UTC (permalink / raw)
To: Piotr Hosowicz; +Cc: linux-kernel
On Sat, Dec 18, 2010 at 05:02:48PM +0100, Piotr Hosowicz wrote:
> git remote add networking
> master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git master
> git remote update
git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git master
hth, Kyle
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why is networking GIT refusing me?
2010-12-18 16:11 ` Kyle McMartin
@ 2010-12-18 16:18 ` Piotr Hosowicz
2010-12-18 16:20 ` Kyle McMartin
0 siblings, 1 reply; 7+ messages in thread
From: Piotr Hosowicz @ 2010-12-18 16:18 UTC (permalink / raw)
To: Kyle McMartin; +Cc: linux-kernel
On 18.12.2010 17:11, Kyle McMartin wrote:
> On Sat, Dec 18, 2010 at 05:02:48PM +0100, Piotr Hosowicz wrote:
>> git remote add networking
>> master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git master
>> git remote update
>
> git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git master
You mean that I had wrong hostname in the GIT URL?
Regards,
Piotr Hosowicz
--
Janusz Korwin-Mikke:
"Idiota z dyplomem to taki sam idiota,
jak przedtem - tylko z pretensjami."
NP: Peter Green Splinter Group - You'll Be Sorry Someday
NB: 2.6.37-rc6-git3
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why is networking GIT refusing me?
2010-12-18 16:18 ` Piotr Hosowicz
@ 2010-12-18 16:20 ` Kyle McMartin
2010-12-18 16:28 ` Piotr Hosowicz
0 siblings, 1 reply; 7+ messages in thread
From: Kyle McMartin @ 2010-12-18 16:20 UTC (permalink / raw)
To: Piotr Hosowicz; +Cc: Kyle McMartin, linux-kernel
On Sat, Dec 18, 2010 at 05:18:15PM +0100, Piotr Hosowicz wrote:
> >git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git master
>
> You mean that I had wrong hostname in the GIT URL?
>
Unless you have a login on hera.kernel.org, yes.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why is networking GIT refusing me?
2010-12-18 16:20 ` Kyle McMartin
@ 2010-12-18 16:28 ` Piotr Hosowicz
0 siblings, 0 replies; 7+ messages in thread
From: Piotr Hosowicz @ 2010-12-18 16:28 UTC (permalink / raw)
To: Kyle McMartin; +Cc: linux-kernel
On 18.12.2010 17:20, Kyle McMartin wrote:
> On Sat, Dec 18, 2010 at 05:18:15PM +0100, Piotr Hosowicz wrote:
>>> git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git master
>>
>> You mean that I had wrong hostname in the GIT URL?
>>
>
> Unless you have a login on hera.kernel.org, yes.
OK, I've just built and booted without fresh networking source so I'll
build again. Thanks a lot.
Regards,
Piotr Hosowicz
--
Demokracja to kult szakali wyznawany przez osły (Henry Louis Mencken)
NP: Peter Green Splinter Group - Big Change Is Gonna Come
NB: 2.6.37-rc6-20101218-1641-pzti+
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why is networking GIT refusing me?
2010-12-18 16:02 Why is networking GIT refusing me? Piotr Hosowicz
2010-12-18 16:11 ` Kyle McMartin
@ 2010-12-18 16:30 ` Thorsten Kranzkowski
2010-12-18 16:36 ` Piotr Hosowicz
1 sibling, 1 reply; 7+ messages in thread
From: Thorsten Kranzkowski @ 2010-12-18 16:30 UTC (permalink / raw)
To: Piotr Hosowicz; +Cc: linux-kernel
On Sat, Dec 18, 2010 at 05:02:48PM +0100, Piotr Hosowicz wrote:
> Hello,
>
> I tried to update my Linux tree with the newest networking source vand
> tried to run:
>
> git remote add networking
> master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git master
you probably want to use
git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
for public, read only access.
> git remote update
>
> The second one asks me if the SSH key is valid, and then asks me for the
> root password which I obviously do not know and cannot update. Where to get
> newest networking source by GIT?
>
> Regards,
>
> Piotr Hosowicz
--
| Thorsten Kranzkowski Internet: dl8bcu@dl8bcu.de |
| Mobile: ++49 170 1876134 Snail: Kiebitzstr. 14, 49324 Melle, Germany |
| Ampr: dl8bcu@db0lj.#rpl.deu.eu, dl8bcu@marvin.dl8bcu.ampr.org [44.130.8.19] |
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Why is networking GIT refusing me?
2010-12-18 16:30 ` Thorsten Kranzkowski
@ 2010-12-18 16:36 ` Piotr Hosowicz
0 siblings, 0 replies; 7+ messages in thread
From: Piotr Hosowicz @ 2010-12-18 16:36 UTC (permalink / raw)
To: dl8bcu, linux-kernel
On 18.12.2010 17:30, Thorsten Kranzkowski wrote:
> On Sat, Dec 18, 2010 at 05:02:48PM +0100, Piotr Hosowicz wrote:
>> Hello,
>>
>> I tried to update my Linux tree with the newest networking source vand
>> tried to run:
>>
>> git remote add networking
>> master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git master
>
> you probably want to use
> git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
> for public, read only access.
Yes, Kyle just told me, I'll build again right away.
Regards,
Piotr Hosowicz
--
Z cyklu "Uroki demokracji", czyli pytania i odpowiedzi w teledurniejach:
- W którym kraju znajduje się Mount Everest?
- Hm, to nie Szkocja, prawda?
NP: Peter Green Splinter Group - Heart Of Stone
NB: 2.6.37-rc6-20101218-1641-pzti+
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-12-18 16:53 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-18 16:02 Why is networking GIT refusing me? Piotr Hosowicz
2010-12-18 16:11 ` Kyle McMartin
2010-12-18 16:18 ` Piotr Hosowicz
2010-12-18 16:20 ` Kyle McMartin
2010-12-18 16:28 ` Piotr Hosowicz
2010-12-18 16:30 ` Thorsten Kranzkowski
2010-12-18 16:36 ` Piotr Hosowicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox