Issue
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?
Solution
svn uses propset
to change file attributes:
svn propset svn:executable ON sync.py
Answered By - Adam Matan Answer Checked By - Gilberto Lyons (WPSolving Admin)