SVN post-commit update error (Can't create temporary file from template / permission denied)

StackOverflow https://stackoverflow.com/questions/18006984

  •  04-06-2022
  •  | 
  •  

Question

My post-commit hook is:

/usr/bin/svn update /var/www/html/mysite/ --username myusername --password mypassword --no-auth-cache >> /var/www/html/mysite/foo.txt 2>&1

After performing a commit, my post-commit hook outputs to foo.txt the following:

Updating '/var/www/html/mysite': svn: E000013: Can't create temporary file from template '/var/www/html/mysite/.svn/tmp/svn-XXXXXX': Permission denied

Any ideas?? Must be something related to permissions. It used to work, but something happened.

Était-ce utile?

La solution

check if you have the permission of /var/www/html/mysite/

Autres conseils

When this happens to me (svn 1.7.14), I usually just have to create the tmp directory and retry the command:

mkdir /var/www/html/mysite/.svn/tmp

For all Linux Machine Users

Its file permission issue run this particular command in linux terminal.

 chmod -R 0777 /var/www/YourProjectName
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top