本地文件在commit到仓库之前若没有chmod +x 权限的话,那在svn仓库里的文件将会保持当前无可执行属性状态。

即使在本地chmod +x filename 之后,再提交到仓库也是没有用的。check out到其他目录的时候,文件仍然没有可执行权限。

需要使用svn 设置文件属性,如下

linux:

svn propset svn:executable on *

svn commit -m "" Hiviewxxx

windows:

右键 - > propeties ->new  ->executable.

commit上去即可。

相关文章:

  • 2021-05-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-28
  • 2021-11-10
  • 2022-12-23
猜你喜欢
  • 2021-12-21
  • 2022-12-23
  • 2021-11-16
  • 2021-05-19
相关资源
相似解决方案