views:

137

answers:

1

I have someone connecting to my repository using the url (substituted the IP address): svn+ssh://[email protected]/subversion

Yet when they commit files, the author entry is "null".

According to this article: http://tortoisesvn.net/node/80 it should be working fine.

Does anyone have any suggestions?

+1  A: 

Check your server configuration in [repository]/conf/svnserve.conf file if it has set

anon-acces=write
auth-access=write

Usually, with the default settings

anon-access = read
auth-access = write

(you can just comment out the lines), the author information should be preserved.

Palmin
That was it, thanks!
rmh