When I try to push my recent commits to my remote server I get a mercurial error http 500 access denied error message.
How can I fix this problem?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This can be caused by access problems on the server you want to push to. On my server I accidentaly created the mercurial repo with
rootowner and group.I just changed the owner and group of the server side repo with
sudo chown -R www-data:www-data MyRepo/and I was able to push again.