使用 SVN uri 路径在 SVN 中提交文件而不使用工作副本

发布于 2024-10-12 10:43:31 字数 151 浏览 6 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(4

比忠 2024-10-19 10:43:31

有可能,您可以使用 svnmucc 命令行工具,

svnmucc put path-to-source path-to-remote

这不会让您使用流,但您可以查看该工具的源代码来编写一些可以在流上工作的东西。

It is possible, you can using the svnmucc command line tool

svnmucc put path-to-source path-to-remote

This won't let you use streams, but you could look at the source of the tool to write something that worked off streams.

白日梦 2024-10-19 10:43:31

您可以使用 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, ...).

止于盛夏 2024-10-19 10:43:31

使用 svnmucc -- put - path-to-remote 允许的流。

Streams allowed with svnmucc -- put - path-to-remote.

向日葵 2024-10-19 10:43:31

如果没有工作副本,您将无法提交文件。

You can't commit files without a working copy.

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