vote up 3 vote down star

I'd like to know how to get Subversion to change the name that my changes appear under.

I'm just starting to use Subversion. I'm currently using it to version control code on an XP laptop where I'm always logged in under my wife's name. I'd like the subversion DB to show the changes under my name.

Later on I'll replicate the DB so it is accessible to the whole house. My wife uses the office computer where she is always logged in under my name. I'll probably set it up so that it automatically checks in modified documents... preferably under her name.

Eventually I'll probably be using it from a linux machine under another username.

Is there some way to modify the user environment to change the user name that Subversion calls you? I'd expect something like setting SVN_USERNAME='Mark' which would override however it usually gets the name.

Update: It looks like the --username flag that Michael referred to does work to change the name reported by "svn stat", even for local file: repositories. In addition, it is sticky so you don't need to specify it for the next command. I even rebooted and it still used the "--username" value from my previous boot.

Thanks to Michael Ratanaphintha who answered my question in two minutes! Thanks also Kamil who raised an important aspect which fortunately turned out to not be a problem. And thanks to all those who answered and contributed.

flag

6 Answers

vote up 5 vote down check

Most Subversion commands take the --username option to specify the username you want to use to the repository. Subversion remembers the last repository username and password used in each working copy, which means, among other things, that if you use svn checkout --username myuser you never need to specify the username again.

EDIT: As Kamil Kisiel says, when Subversion is accessing the repository directly off the file system, it uses your file system permissions to access the repository. (When you connect via SSH tunneling, SVN uses your FS permissions on the server, as determined by your SSH login.) So svn checkout --username may not work for your repository.

link|flag
Thanks for the quick answer. The --username flag appears to be very sticky, even across reboots. And it works fine on my file: repository. – Mark Santesson Jan 3 '09 at 3:43
vote up 0 vote down

Subversion usually asks me for my "Subversion username" if it fails using my logged in username. So, when I am lazy (usually) I'll just let it ask me for my password and I'll hit enter, and wait for the username prompt and use my Subversion username.

Otherwise, Michael's solution is a good way to specify the username right off.

link|flag
vote up 1 vote down

I believe if you use the file:// method to access your subversion repository, your changes are always performed under the user which accesses the repository. You need to use a method that supports authentication such as http:// or svn://.

See http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.serverconfig.choosing

link|flag
vote up 0 vote down

TortoiseSVN always prompts for username. (unless you tell it not to)

link|flag
vote up 1 vote down

Using Subversion with either the Apache module or svnserve, I've been able to perform operations as multiple users using --username.

Each time you invoke a Subversion command as a 'new' user, your $HOME/.subversion/auth/<authentication-method>/ dir will have a new entry cached for that user (assuming you are able to authenticate with the correct password or authentication method for the server you are contacting as that particular user).

link|flag
vote up 0 vote down

I believe you can set the SVN_USER environment variable to change your SVN username.

link|flag
Can you provide a reference for that? I did a search and found only svn_username, which is a patch that someone made and I can't tell if it made it to the mainline or not... I would think I would have found other hits if so. – Mark Santesson Jan 2 '09 at 2:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.