I am developing on a mac and using an svn server on another machine using svn_ssh While I was able to do an initial checkin and checkout I cannot do a commit from the command line because the system tries to use my local username jondoe (and prompts a password) when connecting to the remote server where my username is johnd.

So, How can I tell the svn+ssh to use johnd for my commits?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted
  1. Backup your changes (just changed files, you mustn't overwrite .svn directory)
  2. Checkout again, but now using your remote username

    svn checkout svn+ssh://<ssh_username>@<svn host domain>/<server repository path>

  3. Restore your changes from backup

  4. Commit them

    svn commit -m 'Description'

I've just successfuly checkouted and commited with different local and ssh usernames

link|improve this answer
Thanks but it gives the error: svn: Must give local path (not URL) as the target of a commit. I tried like this: svn commit -m 'Summary of changes' . svn+ssh://my-username@my-server/my-home/my-repo just using . for myfiles – Calgacus Nov 21 '11 at 16:22
completely reedited my response, now it is tested – Míla Mrvík Nov 21 '11 at 16:40
ok that seems to have worked but I'll repost here if I start getting the same error later. I had to modify your instructions to get it to work as when I did the checkout it failed saying that 'Myapp is already a working copy for a different URL'. so I just moved the Myapp dir to MyappXYZ and then your suggestion worked. I had thought of doing it this way but was hoping not to as I suspect the error will recur as this is pretty much the same way I originally checked out my project. Thanks. – Calgacus Nov 21 '11 at 17:02
feedback

Use --username option

svn commit --username johnd
link|improve this answer
Thanks but that yields another error: svn commit --username johnd svn: Commit failed (details follow): svn: system('vim svn-commit.tmp') returned 256 svn: Your commit message was left in a temporary file: svn: '/Users/johndoe/development/Myapp/svn-commit.tmp' – Calgacus Nov 21 '11 at 16:46
@Calgacus - I have a Mac, and use the same sort of syntax to set the Subversion user name. When you give it --username, it should have asked for a password. You can also pass a password via the --password parameter. I wonder if the problem you got is with the vim command and not with the svn command itself. Try svn commit --user johnd -m "commit description" which bypasses vim for entering the commit message. – David W. Nov 21 '11 at 18:02
@Calgacus: looks like svn failed to find your default editor. Either set EDITOR or SVN_EDITOR environment variables appropriately or pass commit message by -m option. See also this question. – ks1322 Nov 21 '11 at 18:43
feedback

In your ~/.ssh/config, add a section like this:

Host svn.example.com
User johnd

Replace svn.example.com with the hostname of the svn server.

This will work for all ssh connections, not just subversion-related ones.

See also the manual page ssh_config, which you may be able to read by running man ssh_config in a shell.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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