* attempting to clone the git repo
@ 2007-03-08 16:49 Andrew Kilroy
2007-03-08 17:29 ` Johannes Schindelin
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Kilroy @ 2007-03-08 16:49 UTC (permalink / raw)
To: git
Hi,
I'm attempting to clone the git repository using git-1.5.0.3 in my workplace.
Port 9418's blocked by the firewall, so I'm trying via http:
$ git clone http://git.kernel.org/pub/scm/git/git.git
Initialized empty Git repository in /home/akilroy/workspace/git/.git/
Cannot get remote repository information.
Perhaps git-update-server-info needs to be run there?
Is there a problem at the server? I've tried this before using an old version
of git, and that worked (1.4.4.4 I think).
Thanks,
Andy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: attempting to clone the git repo
2007-03-08 16:49 attempting to clone the git repo Andrew Kilroy
@ 2007-03-08 17:29 ` Johannes Schindelin
2007-03-08 17:33 ` Johannes Schindelin
2007-03-08 18:40 ` Junio C Hamano
0 siblings, 2 replies; 6+ messages in thread
From: Johannes Schindelin @ 2007-03-08 17:29 UTC (permalink / raw)
To: Andrew Kilroy; +Cc: git
Hi,
On Thu, 8 Mar 2007, Andrew Kilroy wrote:
> I'm attempting to clone the git repository using git-1.5.0.3 in my workplace.
> Port 9418's blocked by the firewall, so I'm trying via http:
>
> $ git clone http://git.kernel.org/pub/scm/git/git.git
Add a "/" to the end:
$ git clone http://git.kernel.org/pub/scm/git/git.git/
Hth,
Dscho
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: attempting to clone the git repo
2007-03-08 17:29 ` Johannes Schindelin
@ 2007-03-08 17:33 ` Johannes Schindelin
2007-03-08 18:40 ` Junio C Hamano
1 sibling, 0 replies; 6+ messages in thread
From: Johannes Schindelin @ 2007-03-08 17:33 UTC (permalink / raw)
To: Andrew Kilroy; +Cc: git
Hi,
On Thu, 8 Mar 2007, Johannes Schindelin wrote:
> On Thu, 8 Mar 2007, Andrew Kilroy wrote:
>
> > I'm attempting to clone the git repository using git-1.5.0.3 in my workplace.
> > Port 9418's blocked by the firewall, so I'm trying via http:
> >
> > $ git clone http://git.kernel.org/pub/scm/git/git.git
>
> Add a "/" to the end:
>
> $ git clone http://git.kernel.org/pub/scm/git/git.git/
Sorry. After trying: this does no longer work. Evidently, something
changed (gitweb says http://git.kernel.org//git/git.git (sic!) is correct
now, but it is not).
Sorry again,
Dscho
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: attempting to clone the git repo
2007-03-08 17:29 ` Johannes Schindelin
2007-03-08 17:33 ` Johannes Schindelin
@ 2007-03-08 18:40 ` Junio C Hamano
2007-03-09 9:51 ` Andrew Kilroy
1 sibling, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2007-03-08 18:40 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: Andrew Kilroy, git
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> On Thu, 8 Mar 2007, Andrew Kilroy wrote:
>
>> I'm attempting to clone the git repository using git-1.5.0.3 in my workplace.
>> Port 9418's blocked by the firewall, so I'm trying via http:
>>
>> $ git clone http://git.kernel.org/pub/scm/git/git.git
>
> Add a "/" to the end:
>
> $ git clone http://git.kernel.org/pub/scm/git/git.git/
I've always thought that for http transfer the hostname was not
git.kernel.org but www.kernel.org, as in:
git clone http://www.kernel.org/pub/scm/git/git.git/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: attempting to clone the git repo
2007-03-08 18:40 ` Junio C Hamano
@ 2007-03-09 9:51 ` Andrew Kilroy
2007-03-09 10:08 ` Peter Baumann
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Kilroy @ 2007-03-09 9:51 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Johannes Schindelin, git
On 08/03/07, Junio C Hamano <junkio@cox.net> wrote:
> I've always thought that for http transfer the hostname was not
> git.kernel.org but www.kernel.org, as in:
>
> git clone http://www.kernel.org/pub/scm/git/git.git/
>
That worked, thanks.
I thought there were more branches though (pu, todo...). I can only
see master via 'git branch'. I'm not that familiar with git yet, so I
might be missing something obvious here.
Andy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: attempting to clone the git repo
2007-03-09 9:51 ` Andrew Kilroy
@ 2007-03-09 10:08 ` Peter Baumann
0 siblings, 0 replies; 6+ messages in thread
From: Peter Baumann @ 2007-03-09 10:08 UTC (permalink / raw)
To: Andrew Kilroy; +Cc: git
On Fri, Mar 09, 2007 at 09:51:14AM +0000, Andrew Kilroy wrote:
> On 08/03/07, Junio C Hamano <junkio@cox.net> wrote:
> >I've always thought that for http transfer the hostname was not
> >git.kernel.org but www.kernel.org, as in:
> >
> > git clone http://www.kernel.org/pub/scm/git/git.git/
> >
>
> That worked, thanks.
>
> I thought there were more branches though (pu, todo...). I can only
> see master via 'git branch'. I'm not that familiar with git yet, so I
> might be missing something obvious here.
>
> Andy
Use
git branch -r # shows the remote branches
or
gitk --all # --all = show every branch
to see all the branches.
-Peter
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-03-09 10:04 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-08 16:49 attempting to clone the git repo Andrew Kilroy
2007-03-08 17:29 ` Johannes Schindelin
2007-03-08 17:33 ` Johannes Schindelin
2007-03-08 18:40 ` Junio C Hamano
2007-03-09 9:51 ` Andrew Kilroy
2007-03-09 10:08 ` Peter Baumann
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).