How to find out who committed a certain file in Subversion?
How to find out who committed a certain file in Subversion? Or ho开发者_如何学运维w to export the Actions from the log in TortoiseSVN? I don't have admin rights. In Windows.
Why don't you use something like below:
svn log -v http://server/repo | grep --regexp="A .*filename" -B 2
Or, in TortoiseSVN, go to Show Log
-> Click on Show All
button. In the search box enter the filename you want ( or if you had right clicked on the file itself, hence showing only its log, you need not do this.) Now highlight all of them and copy and paste into a text editor and search in the editor using a regexp like maybe Added : .*filename
Show Log should give you the info you need, as you can see when the commit was made; but if that doesn't work for some reason, perhaps 'blame' might give you a back door ?
But normally, just right click -> Tortoise SVN -> Show Log should work.
Last minute thought, click -> Tortoise SVN -> Properties and check the ... owner tag (from memory don't have SVN on my Dads Mac!)
svn log -v
(may require installing a proper shell)
精彩评论