How do I find out who the author of a revision is in SVN?
How do I find out who the author of a revision 开发者_运维技巧is in SVN?
svn log -r <num> /path/to/working/copy
Use svn log -r 123123
: you'll get
r123123 | *user name* | date & time | length of log
Log message text
I believe it will be stored in the logs. How to check it depending on which SVN client/server you are using. e.g. using TortoiseSVN, you can just see it by click "Show log".....
精彩评论