-2

How I can view recently svn repository ?

Lucas Kauffman
  • 16,818
  • 9
  • 57
  • 92
Mohammad AL-Rawabdeh
  • 1,592
  • 12
  • 30
  • 54

1 Answers1

4

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

user9517
  • 114,104
  • 20
  • 206
  • 289