How I can view recently svn repository ?
Asked
Active
Viewed 135 times
-2

Lucas Kauffman
- 16,880
- 9
- 58
- 93

Mohammad AL-Rawabdeh
- 1,612
- 12
- 33
- 54
-
I think your question lacks a verb. What Repos do you want to view? Recently _changed_ Repos? – Manuel Faux Sep 22 '10 at 14:03
-
yes i want to find Recently changed Repos? – Mohammad AL-Rawabdeh Sep 22 '10 at 14:36
1 Answers
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