svn commit:其中“--encoding”是参数适用?

发布于 2024-10-04 05:43:00 字数 376 浏览 1 评论 0原文

我必须使用 UTF-8 提交消息和 UTF-8 编码的修订属性进行 svn 提交。

如果我调用:

svn ci -F commit_message.UTF8.file --with-revprop prop1='UTF8-value1' --encoding 'utf-8'

--encoding 参数中的 UTF-8 是否会同时应用于提交消息文件 (commit_message.UTF8.file) 和指定的“prop1”修订属性值 (UTF8-value1)?

我知道稍后可以使用 svn propset --revprop -r NNN 添加修订属性,但最好在一次操作中完成所有操作。

谢谢你!

I have to make svn commit with both UTF-8 commit message and UTF-8-encoded revision property.

If I call:

svn ci -F commit_message.UTF8.file --with-revprop prop1='UTF8-value1' --encoding 'utf-8'

will UTF-8 from --encoding parameter applied both to commit message file (commit_message.UTF8.file) and specified 'prop1' revision property value (UTF8-value1)?

I know that it possible adding revision property later with svn propset --revprop -r NNN but It will be nice to make all in one operation.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

↘人皮目录ツ 2024-10-11 05:43:00

提交消息始终以 UTF-8 格式存储(http://svnbook.red-bean.com/en/1.5/svn.tour.initial.html):

Subversion 在内部将某些数据位(例如属性名称、路径名和日志消息)处理为 UTF-8 编码的 Unicode。但这并不是说您与 Subversion 的所有交互都必须涉及 UTF-8。作为一般规则,Subversion 客户端将优雅且透明地处理 UTF-8 和计算机上使用的编码系统之间的转换,如果可以有意义地完成此类转换(当今使用的最常见编码就是这种情况)。< /p>

The commit messages are always stored in UTF-8 (http://svnbook.red-bean.com/en/1.5/svn.tour.initial.html):

Subversion internally handles certain bits of data—for example, property names, pathnames, and log messages—as UTF-8-encoded Unicode. This is not to say that all your interactions with Subversion must involve UTF-8, though. As a general rule, Subversion clients will gracefully and transparently handle conversions between UTF-8 and the encoding system in use on your computer, if such a conversion can meaningfully be done (which is the case for most common encodings in use today).

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