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

Ask A Question

Stats

  • Questions 277k
  • Answers 277k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You should only map this as an inheritance relationship, if… May 13, 2026 at 3:03 pm
  • Editorial Team
    Editorial Team added an answer If you are inserting a single row, you can use… May 13, 2026 at 3:03 pm
  • Editorial Team
    Editorial Team added an answer When you have moving video, you can use temporal parallax… May 13, 2026 at 3:03 pm

Related Questions

Hi I use C# and SharpSvn library. I would like to check if file
I'm trying to create a website that will automate project setup. I want to
I’m trying to call RemoteCreateDirectories in SharpSVN through a web app and want the
I want to call a Subversion API from a Visual Studio 2003 C++ project.

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.