Commit file to SVN without working copy using SVN uri path

I am new to SharpSVN, I have an aspx page in which I need to display the contents of a file from SVN, modify the contents and transfer the file to SVN from memystream without a working copy. I can get the contents of the file using memystream and display on the webpage, but is there any way to capture the content from the webpage using the SVN uri path?

thanks in advance.

+3
source share
4 answers

You cannot transfer files without a working copy.

0
source

Perhaps you can use the svnmucc command line tool

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

, , -, .

0

You can use the use of the remote Subversion API. Here is an example for the Java language, but the same API is used in other languages ​​(C, Perl, ...).

0
source

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

0
source

Source: https://habr.com/ru/post/1786129/


All Articles