anjanb
anjanb

Reputation: 13867

what is the command to know when a subversion revision was committed?

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

Answers (2)

Lazy Badger
Lazy Badger

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

reevh
reevh

Reputation: 765

$ svn list

When you execute svn list command with –verbose option it displays the following information:

  • Revision number of the last commit
  • Author of the last commit
  • Size (in bytes)
  • Date and time of the last commit

Source: Here

There might be a better one. Hope this helps for now.

Upvotes: 1

Related Questions