Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn: how to set the executable bit on a file? [duplicate]

How do I set the executable bit on a file in an svn repository?

I've tried:

chmod +x sync.py
svn commit sync.py -m "Make sync.py executable"

But the change was not propagated.

How do I set the executable bit in the svn repository?

like image 264
Adam Matan Avatar asked Jul 24 '13 23:07

Adam Matan


1 Answers

svn uses propset to change file attributes:

svn propset svn:executable ON sync.py 
like image 154
Adam Matan Avatar answered Sep 18 '22 15:09

Adam Matan