svn:如何设置文件的可执行位?

Ada*_*tan 30 svn executable chmod

如何在svn存储库中的文件上设置可执行位?

我试过了:

chmod +x sync.py
svn commit sync.py -m "Make sync.py executable"
Run Code Online (Sandbox Code Playgroud)

但这种变化没有传播.

如何在svn存储库中设置可执行位?

Ada*_*tan 71

svn用于propset更改文件属性:

svn propset svn:executable ON sync.py
Run Code Online (Sandbox Code Playgroud)