Re: [PROBLEM] Checkout from cloned repository does not work

2005-09-03 Thread Pekka Enberg
On Sat, 2005-09-03 at 00:31 -0700, Junio C Hamano wrote: > Which ended with the error message "Somebody should define > smarter http server protocol". That's from git-clone-script and > the echo to generate the output is followed by "exit 1". Oh, I just didn't realize that was an error message. P

Re: [PROBLEM] Checkout from cloned repository does not work

2005-09-03 Thread Junio C Hamano
Pekka Enberg <[EMAIL PROTECTED]> writes: > I double checked that -- no, it does not print out an error. I copied > the exact output in the original mail. Which ended with the error message "Somebody should define smarter http server protocol". That's from git-clone-script and the echo to genera

Re: [PROBLEM] Checkout from cloned repository does not work

2005-09-02 Thread Pekka Enberg
Hi Junio, On Fri, 2005-09-02 at 11:13 -0700, Junio C Hamano wrote: > You would need 'chmod +x git-test.git/hooks/post-update' here if > you are allowing people to pull over http from this repository. Aah, thanks! That fixed it for me. On Fri, 2005-09-02 at 11:13 -0700, Junio C Hamano wrote: > Th

Re: [PROBLEM] Checkout from cloned repository does not work

2005-09-02 Thread Junio C Hamano
Pekka Enberg <[EMAIL PROTECTED]> writes: > I cannot checkout from a cloned git repository I have created. I am > using git 0.99.5 from Gentoo portage. > Following the tutorial, I create new git repository: >... > Now on the server, I create a repository: > > $ mkdir git-test.git > GIT_DIR=git

[PROBLEM] Checkout from cloned repository does not work

2005-09-02 Thread Pekka Enberg
Hi, I cannot checkout from a cloned git repository I have created. I am using git 0.99.5 from Gentoo portage. Following the tutorial, I create new git repository: $ mkdir git-test $ cd git-test/ $ git-init-db defaulting to local storage area $ echo "Hello, Git" > hello $ git-update-c