0

Possible Duplicate:
How to access the current Subversion build number?

How can I get hold of my previous commit number that I have committed to?

Thanks

Community
  • 1
  • 1
topgun
  • 2,463
  • 8
  • 31
  • 46

1 Answers1

0

svn log | grep '$USER' | head -2 | cut -d' ' -f1 | tail -1 works for me:

{Z} hd1: 15:50 % svn log | grep 'cutting' | head -2 | cut -d' ' -f1 | tail -1 
r421185
hd1
  • 33,938
  • 5
  • 80
  • 91