14

I'm offline (well, to be exact my svn repository in unreachable right now), but I have a fully fledged working copy on which I am, well, working :-)

Now I need to know the revision number of a file. How can I check the revision number of a particular file (which by the way doesn't have the svn:keywords property) while being offline?

I usually check them with svn ls -v or svn log | head or svn blame (of course they give more than I'm looking for right now).

Davide
  • 15,535
  • 10
  • 44
  • 65

2 Answers2

25

Use: svn info FILENAME

Gonzalo
  • 19,578
  • 3
  • 69
  • 75
1

You can also enter the folder .svn and check the file named entries, you'll see the revision number and the author

Jeredepp
  • 11
  • 3