SharpSvn is a binding of the Subversion Client API for .Net 2.0-4.0+ applications contained within a set of xcopy-deployable dll's
Questions tagged [sharpsvn]
309 questions
0
votes
1 answer
Why does my SharpSVN client return only part of the repository URI?
I hope this isn't too vague. I am writing an app to run at post-commit hook on our SVN server. When I request the repository URI, I sometimes get an answer that doesn't match the path of my commit.
Here's how I get the commit args in general…

mrcoulson
- 1,331
- 6
- 20
- 35
0
votes
1 answer
From what object do you get a revised files properties from SharpSVN [c#]?
I've been working with SharpSVN for a few weeks now and I was looking to access an individual files properties (at a specific revision) as you can in TurtoiseSVN by clicking on the revision then right clicking on a path and selecting 'Show…

Sam F
- 621
- 1
- 8
- 16
0
votes
1 answer
c# SharpSVN, how does one get a copy of specific revision files?
I was looking for something in SharpSVN that will do the equivalent of "Save revision to..." in the TurtoiseSVN GUI. I have been trying to find out how to do this with no luck. Currently I am looking at:
Note: logentry is a SvnLogEventArgs after I…

Sam F
- 621
- 1
- 8
- 16
0
votes
1 answer
Retrieving SVN log files with SharpSVNs client.diff(uri, range, ouput) in no way edits the repository right?
I have been using SharpSVN and love it but I wanted to make sure that the .GetLogs() and .Diff() functions in no way actually edit data on the repositories. These things just get you the information stored in the logs as if you were repo-browsing…

Bob L
- 47
- 1
- 5
0
votes
1 answer
sharpSVN is connecting to some Repositories and others no
i'am building an application that connect to SVN repository, it works with my credentials and my SVN access URL, but when i change the user and the URL it dosn't work.
the exception is :
SharpSvn.SvnRepositoryIOException //Unable to connect to a…

AtefB
- 171
- 1
- 3
- 16
0
votes
1 answer
Multiple CheckOut or Multiple Commit
I'm using Visual studio 2008 with C# and SharpSVN dll (for Subversion 1.6)
I wish to commit to multiple different folders in my repository, but without having to checkout the entire repository.
I tried using the method:
SVNClient.Commit (ICollection…

marco
- 1
0
votes
1 answer
SharpSvn marks file as missing but I need deleted
I want to delete file in svn.
I do this so:
svnClient.Delete( pathToFile, new SvnDeleteArgs {Force = true} );
When I want to commit chenges, in svn file status is 'missing', but I need 'deleted'.
What I do wrong?

name1ess0ne
- 868
- 7
- 17
0
votes
1 answer
Commiting and get specific revision
I work with sharpSVN,i need 2 things:
1) I need to get a revision with specific logmessage
2) When I commit my revision, I want to show every file, that is commiting. I find an event commiting, but I don't know how it works(Commiting and get…

Vepr
- 21
- 2
0
votes
1 answer
Problem with commit in sharpsvn
I'm a programmer in china.
I want to commit the changes of a working copy in my computer to the repository. The repository is in an URL and i´m doing this now:
using (SvnClient client = new SvnClient()){
string path =…

zhangxiaoning
- 21
- 2
0
votes
1 answer
Subversion checkout doesn't create working copy
On the command line I ran:
svn checkout --depth infinity "RepoURL"
It creates the directory matching the repo folder with all the same files but it is not a working copy. Right-clicking on it with TortoiseSVN gives a SVN upgrade working copy option…

Knightwisp
- 315
- 1
- 13
0
votes
1 answer
commit files not working properly
I m trying to commit changes to the project to my svn server but it doesnt seem to work.
The Test:
I run the code below with the folder where nothing has been changed and nothing happens as expected, Then I create a new folder and then run the code…

NoLiver92
- 882
- 3
- 15
- 39
0
votes
2 answers
SharpSVN checkout creates local directory but it is not a working copy
I'm using the standard constructor for the client which is in a Branch class:
this.svn = newSvnClient();
Another method in the Branch class does the remote copy:
this.svn.RemoteCopy(this.trunk, this.branch, copy)
Lastly, another method in the same…

Knightwisp
- 315
- 1
- 13
0
votes
1 answer
Getting tortoise svn committed task's taskid using sharpsvn
How Can I get tortoise svn's committed task's task Id using sharpsvn to a c# application?

vijesh
- 1,115
- 1
- 11
- 27
0
votes
0 answers
Sharp SVN -- Merge not happening even with Merge Complete Status
I am trying to do a merge between a working copy and a branch. In my case, we have 3 branches, all 3 of them have the same solution but are parallel branches, so if one changes anything in one branch it needs to be manually updated in the other…

priyank
- 21
- 2
0
votes
0 answers
How to get current committing message of tortoise svn to a c# windows application
How can I get current committing message of tortoise svn to a c# windows application using sharp svn API?

vijesh
- 1,115
- 1
- 11
- 27