仅提交存储库根目录上的属性更改,而不是文件

发布于 2024-08-20 07:33:23 字数 94 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一袭白衣梦中忆 2024-08-27 07:33:23

为了仅提交在命令行上指定的显式路径,请在具有新修改的 externals 属性的目录中使用 --深度空 选项:

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

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."
清旖 2024-08-27 07:33:23

如果您只想更改属性,您可以立即针对存储库而不是针对工作副本进行更改。

例如:

svn propset svn:externals "test http://yourhost.com/svn/trunk/module/test/src" --revprop -r HEAD http://yourhost.com/svn/trunk/module

请参阅 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:

svn propset svn:externals "test http://yourhost.com/svn/trunk/module/test/src" --revprop -r HEAD http://yourhost.com/svn/trunk/module

See the SVN book on manipulating properties

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文