How to get current user that is using svn on particular workstation?
can I use svn.exe executable with some switch to get that info.
Thanks.
There are several ways to find out stored logon credentials:
svn auth
to view credentials and certificates cached in SVN credential store (%APPDATA%\Subversion\auth
).cmdkey
to view the credentials stored in Windows Credential Manager.whoami
to find out your user account name .BTW, don't miss Michael Hackner's answer:
There's no such thing as the "current user that is using svn." Every time an SVN command is submitted, credentials are supplied either explicitly at the command prompt or implicitly through saved credentials, which could include multiple users.