Reputation: 2744
How do I find out who the author of a revision is in SVN?
Upvotes: 0
Views: 90
Reputation: 34418
Use svn log -r 123123
: you'll get
r123123 | *user name* | date & time | length of log
Log message text
Upvotes: 2
Reputation: 8786
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".....
Upvotes: 1