Federer
Federer

Reputation: 34745

svn: Can't open file '.svn/lock': Permission denied on MAc

I can't make this go away and I've tried everything. I don't really care how horrible and hacky the answer is, I just want it to go away. Can anyone help? Thanks.

EDIT:

I'm trying to basic commands, i.e.

cd MyDirectory/
svn update

Upvotes: 22

Views: 25834

Answers (1)

chris
chris

Reputation: 4026

You might not have write permission on the directory

sudo chown -R $(id -u):$(id -g) MyDirectory
chmod -R u+w MyDirectory

Upvotes: 52

Related Questions