Reputation: 34745
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
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