使用 SVN uri 路径在 SVN 中提交文件而不使用工作副本
我是 SharpSVN 的新手,我有一个 aspx 页面,我需要在其中显示来自 SVN 的文件内容,更改内容并从内存流提交 SVN 中的文件,而无需工作副本。我可以使用内存流获取文件内容并显示在网页中,但是有没有办法使用 SVN uri 路径从网页提交内容?
提前致谢..
I'm new to SharpSVN, i have a aspx page in which i need to display a file content from SVN, change the content and commit the file in SVN from memorystream without working copy. I am able to get the file content using memorystream and display in web page, but is there any way to commit content from web page using SVN uri path?
thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有可能,您可以使用 svnmucc 命令行工具,
这不会让您使用流,但您可以查看该工具的源代码来编写一些可以在流上工作的东西。
It is possible, you can using the svnmucc command line tool
This won't let you use streams, but you could look at the source of the tool to write something that worked off streams.
您可以使用 Subversion 远程 API 提交。这是示例 适用于 Java 语言,但其他语言(C、Perl 等)也使用相同的 API。
You can commit using Subversion remote API. Here's the example for Java language, but the same API is used in other languages (C, Perl, ...).
使用
svnmucc -- put - path-to-remote
允许的流。Streams allowed with
svnmucc -- put - path-to-remote
.如果没有工作副本,您将无法提交文件。
You can't commit files without a working copy.