Commit only property changes on root of repo, not files

前端 未结 2 1259
清酒与你
清酒与你 2021-01-29 23:30

I have an SVN repository with uncommitted changes to files. There is also a change in the svn:externals property on the root folder.

How do I commit the property changes

2条回答
  •  遇见更好的自我
    2021-01-30 00:10

    In order to commit only the explicit paths specified on the command line use the --depth empty option e.g. in the directory with the newly modified externals property:

    $svn commit --depth empty . -m "Modify svn externals definition only."
    

提交回复
热议问题