仅提交存储库根目录上的属性更改,而不是文件
我有一个 SVN 存储库,其中包含未提交的文件更改。根文件夹上的 svn:externals 属性也发生了变化。
如何提交属性更改,而不提交对文件本身的更改?
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, WITHOUT committing the changes to the files themselves?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了仅提交在命令行上指定的显式路径,请在具有新修改的 externals 属性的目录中使用
--深度空
选项: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 书籍操纵属性
If you only want to change the property you can do it against the repository right away, instead of against your working copy.
For example:
See the SVN book on manipulating properties