svn get_log function
i want to retrieve all the revisions on one particula开发者_运维问答r user so i am using getlog function.but the logentry for author variable returns test instead of computer name.why is it so?
You can use:
svn log -q | grep "^r.* | username |" | cut -d"r" -f2 | cut -d" " -f1
This will printout the revision number for that particular user.
精彩评论