Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 211529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:06:13+00:00 2026-05-11T18:06:13+00:00

I use SharpSvn library from CollabNET. I would like to set revision author while

  • 0

I use SharpSvn library from CollabNET. I would like to set revision author while commiting, but I always end up with a commit with my Windows user name.

This does not work for me:

System.Net.NetworkCredential oCred = new
    System.Net.NetworkCredential("user"​, "pass");
client.Authentication.DefaultCredentials = oCred;

I’ve tried also:

client.SetProperty("", "svn:author", "user");

But I get an error that target (first argument) is bad.

So could you please tell me how to set user (author) of commit to subversion repository in c#?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T18:06:13+00:00Added an answer on May 11, 2026 at 6:06 pm

    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 have to do that).

    When you use a file:/// repository (which is usually not recommended – See The Subversion Book) you can work around this directly on the commit.

    using (SvnClient client = new SvnClient())
    {
        client.Authentication.Clear(); // Clear predefined handlers
    
        // Install a custom username handler
        client.Authentication.UserNameHandlers +=
            delegate(object sender, SvnUserNameEventArgs e)
            {
                e.UserName = "MyName";
            };
    
        SvnCommitArgs ca = new SvnCommitArgs { LogMessage = "Hello" }
        client.Commit(dir, ca);
    }
    

    If you connect to a remote repository you can change the author of a revision when a pre-revprop-change hook is installed in the repository (See The Subversion Book)

    using (SvnClient client = new SvnClient())
    {
        client.SetRevisionProperty(new Uri("http://my/repository"), 12345,
                                  SvnPropertyNames.SvnAuthor,
                                  "MyName");
    
        // Older SharpSvn releases allowed only the now obsolete syntax
        client.SetRevisionProperty(
            new SvnUriTarget(new Uri("http://my/repository"), 12345),
            SvnPropertyNames.SvnAuthor,
            "MyName");
    
    }
    

    [2009-08-14]
    More recent SharpSvn releases also allow this:

    using (SvnRepositoryClient rc = new SvnRepositoryClient())
    {
       SvnSetRevisionPropertyRepositoryArgs ra;
       ra.CallPreRevPropChangeHook = false;
       ra.CallPostRevPropChangeHook = false;
       rc.SetRevisionProperty(@"C:\Path\To\Repository", 12345,
                             SvnPropertyNames.SvnAuthor, "MyName", ra);
    }
    

    This last example assumes direct file access to the repository, but it bypasses repository hooks for optimal performance.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to use the SharpSVN library to access SVN API, how can
Hi I use C# and SharpSvn library. I would like to check if file
I have a sharpsvn .net library i want to use in ironpython project. Library
Use trap to capture signals like this: i=-1;while((++i<33)); do trap echo $i >> log.txt
I use AppEngine to host an Eclipse update site. I would like to keep
Trying to use use SharpSVN in an ASP.NET app. So far, it's been nothing
USE master GO DECLARE @DbName nvarchar(MAX) SET @DbName = N'DataBase' ALTER DATABASE @DbName SET
I am using the SharpSvn library in an application. As part of my automated
Use Case: End-User searches for something and an ArrayCollection is returned with Result objects.
Use Eclipse Classic with ADT plugin. Tried to make project from existing example of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.