Reputation: 13867
I'm trying to find out when a specific subversion revision was committed.
What command should I use ?
I use subversion 1.6.x.
Upvotes: 0
Views: 60
Reputation: 97282
When revision N was committed you can always to know with svn log
svn log URL/OF/REPO -r N -l 1 -q
Upvotes: 1
Reputation: 765
$ svn list
When you execute svn list command with –verbose option it displays the following information:
Source: Here
There might be a better one. Hope this helps for now.
Upvotes: 1