How I can view recently svn repository? [closed]

How I can view recently svn repository ?

Answer

You can find the most recent revision of a repository with the svnlook youngest command

svnlook youngest /path/to/repository

this will give you revision number. To find out the changes associated with that revision use
the svnlook changed command. Assuming you revision number is 9

svnlook changed -r 9 /path/to/repository

Attribution
Source : Link , Question Author : Community , Answer Author :
user9517

Leave a Comment