Vlad Krylov
Vlad Krylov

Reputation: 2744

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?

Upvotes: 0

Views: 90

Answers (3)

Rup
Rup

Reputation: 34418

Use svn log -r 123123: you'll get

r123123 | *user name* | date & time | length of log
Log message text

Upvotes: 2

Bolu
Bolu

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

Eugene Yarmash
Eugene Yarmash

Reputation: 150128

svn log -r <num> /path/to/working/copy

Upvotes: 2

Related Questions