Re: Error in creating git over http

2013-10-09 Thread Jeff King
On Tue, Oct 08, 2013 at 03:05:22PM +, Shlomit Afgin wrote: I do the following on the git server: cd /var/www/html/ git clone --bare /path/to/dir/ gitproject.git cd gitproject.git/ mv hooks/post-update.sample hooks/post-update chmod a+x hooks/post-update OK, so on the next push,

Re: Error in creating git over http

2013-10-09 Thread Shlomit Afgin
Thanks for your answer. I did not know about dumb and smart I will read on those in the future. I found in google that the problem of Error: 403 can be solved. I run on the git server, in the directory that had the repository: 'git gc' which do git cleanup and the problem solved. Thanks you

Error in creating git over http

2013-10-08 Thread Shlomit Afgin
I'm trying to set a http git server. I do the following on the git server: cd /var/www/html/ git clone --bare /path/to/dir/ gitproject.git cd gitproject.git/ mv hooks/post-update.sample hooks/post-update chmod a+x hooks/post-update on the local machine run: git clone