-2

How I can view recently svn repository ?

Lucas Kauffman
  • 16,880
  • 9
  • 58
  • 93
Mohammad AL-Rawabdeh
  • 1,612
  • 12
  • 33
  • 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
  • 115,471
  • 20
  • 215
  • 297