Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个树干的分支。我需要将分支中外部的属性重新设置到不同的点。我的想法是将它们全部删除并使用 propset 重新设置它们。当我输入svn propdel svn:externals http://path-to-branch/externals
svn propdel svn:externals http://path-to-branch/externals
我明白了
svn: E200009: 目标必须是工作副本路径
我的命令有什么问题?
您的命令在存储库 URL 上运行,而不是工作副本。首先查看工作副本:
svn co http://path-to-branch path/to/workingcopy
然后修改工作副本中的属性:
svn propdel svn:externals path/to/workingcopy
提交更改,您应该一切就绪。我会疏忽没有指出实际上没有必要先删除它们,propedit 将覆盖之前的任何属性。