up vote 35 down vote favorite
7
share [g+] share [fb]

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.

link|improve this question
feedback

9 Answers

up vote 28 down vote accepted

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|improve this answer
Thanks for the quick answer. The --username flag appears to be very sticky, even across reboots. And it works fine on my file: repository. – markets Jan 3 '09 at 3:43
feedback

for svn over ssh try:
svn list svn+ssh://user_name@server_name/path_to_repo
it will prompt for the user_name's password.

link|improve this answer
1  
Also works for https://user_name@.../path. – Frank Jan 30 '11 at 19:20
this solution works in all cases. – ManojGumber Nov 23 '11 at 12:59
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
I consider this a better answer because it works for all SVN commands (checkout, commit, etc) where the --username flag seems to either be non-existant or slightly different for various commands... – edwardsharp Nov 3 '11 at 22:17
feedback

"svn co --username=yourUserName --password=yourpassword http://path-to-your-svn"

worked for me when on another user account. You will be prompted to enter username/password again though. You need to login like the above once and you are all set for the subsequent times(Unless you restart your machine).

Thanks guys!

link|improve this answer
feedback

You can setup a default username via ~/.subversion/servers:

[groups]
yourgroupname = svn.example.com

[yourgroupname]
username = yourusername

Please be aware that older versions of svn do not support it (e.g. 1.3.1 [sic!]).

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
2  
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. – markets Jan 2 '09 at 2:34
feedback

Your Answer

 
or
required, but never shown

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