Questions tagged [sharpsvn]

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

309 questions
0
votes
1 answer

SharpSvn GetFileVersions revision range, only one file version returned

I'm trying to use SharpSvn to read the contents of two revisions of a file. When I run the following code the fileVersions collection only contains one item.. var svnClient = new SvnClient(); var revisionInfo = new SvnFileVersionsArgs { …
Tom Hunter
  • 5,714
  • 10
  • 51
  • 76
0
votes
2 answers

How do I use a custom Certificate Authority in SharpSvn without installing the certificate

I am trying to access a subversion repository using SharpSvn. The repository is only available via https and the machine uses its own private certificate authority (don't worry about the security here, I trust the authority). I have the Certificate…
benmichael
  • 11
  • 3
0
votes
1 answer

SharpSVN commit multiple file so slow

I am using SharpSVN to commit a Zend framework source to my GoogleCode host But the progress of commit take too long time, about 1 hour while the source contain nearly 2400 files. I tested with TortoiseSVN client but it seem no difference at all Is…
arasa
  • 1,215
  • 2
  • 10
  • 9
0
votes
0 answers

sharpsvn how to monitor upload progress on commit

i want to monitor the byte-rate of the transfer while commit action runs i have used the SvnClient.Progress event but this event triger every millisecond and not every second the event argument of TotalProgress not give the all byte count of the…
foxdanni
  • 199
  • 1
  • 19
-1
votes
1 answer

How to write the SharpSvn.Update Result in file?

I want to print the modified/removed/deleted/added files details in text file using SharpSvn.Update SvnUpdateResult result; client.Update(path,out result); But this code only returns the revision number not the changes details.
-1
votes
1 answer

Concept of labels in SharpSvn

Do we have the concept of labels(similar to VersioncontrolLabel in Microsoft TFS) in SharpSvn? I am trying to use the SvnClient.SetRevisionProperty Method to set the label for the latest version but not sure if there is any other way to do it.
-1
votes
1 answer

Make Subversion use already existing files in a working copy

I'm doing a checkout from a rather large remote repository ( ~ 5 GB ). However, in some cases, the client already has some if not all of those files on this local computer, but those files are unmanaged ( in no repository of any kind ). Is there any…
Stuffy
  • 302
  • 3
  • 15
-2
votes
1 answer

How do i list all existing revisions of a SVN Repository in c# using SharpSvn

I want to get a list of all revisions from a given Svn repository. But i am pretty new to SharpSvn and Svn in general. Is there an easy way to get this list? If this question has already been answered, i would apreciate it if you linked the…
-2
votes
1 answer

SharpSVN: How to get working copy path from repository URI?

SharpSVN has SvnClient.GetUriFromWorkingCopy to get a repository URI from the path of a working copy, but I don't see a function that does the reverse--there's no GetWorkingCopyFromUri. Assuming there is one, how do I get the name of the working…
chrisd
  • 853
  • 1
  • 9
  • 23
1 2 3
20
21