How can I know which user I used to co an svn repository?
Is there an svn command for this?
update:
开发者_StackOverflow中文版so, how can I ci as some users?
SVN working copies aren't checked out as a certain user (though on some systems the files will be owned by a certain user, who created them).
SVN only records users on revisions, so it is only relevant to ask which user committed a certain revision.
svn ci --username YourUsername
The online help of svn is really useful, check it out! For example, svn help ci
Unless you're running Svn via Apache, you cannot tell who checked out from the repo. If you are running via Apache, you can see who did what from Apache's access logs.
精彩评论