DEV Community

Eduardo Issao Ito
Eduardo Issao Ito

Posted on

Executables in Subversion

To add the "executable bit":

svn propset svn:executable on <list of files> 

To remove the "executable bit":

svn propdel svn:executable <list of files> 

After that, remember to commit the directory.

Top comments (0)