2
votes
SharpSvn question
If you just want to browse SharpSvn you can use http://docs.sharpsvn.net/. The documentation there is far from complete as the focus i …
2
votes
Not all required revisions are specified sharpsvn
As noted on the SharpSvn user list the following example would have resolved the
missing revisions:
using (SvnClient client = new SvnClient())
{
client.DiffMerge(
"CHANGES", …
1
vote
Diffmerge example with SharpSVN
Duplicate: Already answered in Not all required revisions are specified
…
4
votes
How to get latest revision number from SharpSVN?
The least expensive way to retrieve the head revision from a repository
is the Info command.
using(SvnClient client = new SvnClient())
{
SvnInfoEventArgs info;
Uri repos = new …
4
votes
How to set author of SVN commit using SharpSVN library in c#
This all depends on how you connect to your repository, as the repository is responsible for adding a username to the revision. (It usually copies the credentials for the connections but it doesn't …
1
vote
Writing a pre-commit hook using SharpSvn. Does it lack svnlook propget?
See this SharpSvn users mailinglist thread.
The function was added to Sub …
1
vote
Get log details for a specific revision number in a post-commit hook with SharpSVN?
In hook clients you most likely want to use the SvnLookClient that directly accesses the repository. In this example (copied from another question here) I also use the SvnHookArguments class for pa …
1
vote
SharpSvn CreateDirectories
You can use SvnClient.RemoteCreateDirectories. (And don't forget to add a log message to the args class, or to handle the Committing event on the Client).
Authentication is handled via the …
0
votes
How to check if file is under source control in SharpSvn?
If you only want to know if the file is under source control you could use .Info() / .GetInfo(). That method is generally faster as it doesn't have to check if the file has changed since it was che …
2
votes
SharpSVN get post-commit-hook with ‘SvnLookClient’
The SvnLook client is specifically targetted for using in repository hooks. It allows access to uncommited revisions and therefore needs other arguments. (It's the SharpSvn equivalent of the 'svnlo …
0
votes
How can i get access to the SVN pre-commit message using SharpSVN?
Using a recent SharpSvn release you can use
SvnHookArguments ha;
if (!SvnHookArguments.ParseHookArguments(args, SvnHookType.PreCom …
0
votes
Using the current HTTP request identity as the default credentials for SharpSVN
CredentialCache.DefaultCredentials contains a token of the current credentials. It doesn't provide the actual username and/or password.
You would need the exact username and pa …
0
votes
Allowing the local aspnet account to excute SharpSvn.CreateRepository
Did you check the NTFS permissions on the location where you are trying to create the repository?
Depending on your asp.net settings the user that needs create rights there is either the AS …
0
votes
How Can I read a file using sharpsvn client using c#
You probably want SvnClient.Write()... This allows writing specific versions of a file to a strea …
1
vote
Can I use a text file to set svn:externals in SharpSvn’s SetProperty() method ?
SharpSvn doesn't handle the file reading for you; it just allows setting properties.
using(SvnClient client = new SvnClient())
{
string val = File.ReadAllText("C:\\My\\file.txt") …
