linux - The project disappear from gitweb after a git push - Stack Overflow

Tags: git, gitweb, gitolite

"(...) It depends: how you did the integration of gitweb with gitolite (see faq), what exact R rights you did specify for your projects: gitweb cannot be the only user authorized (see the admin doc). "disappear" means the authentication you did enter at the Apache level isn't one of the authorized reader. link|improve this answer answered Mar 7 '11 at 5:21VonC193k26280419 thanks for the hint, I changed the following option in ~/.gitolite.rc: $REPO_UMASK = 0022; # gets you 'rwxr-xr-x' to allow "other" user and group to read the repository and solve the problem :) – Vincent Mar 7 '11 at 6:06 @Vincent: according to github.com/sitaramc/gitolite/blob/pu/doc/…, this would be because the user for the httpd process (Apache web server) isn't the one managing gitolite. It would be best to have the same user for both. – VonC Mar 7 '11 at 6:48 (...)"