I am trying to run svn command that will be used in grunt shell that will allow me to pull only the latest revision number from HEAD. So when I do svn log -r HEAD
it shows me all of the information for the latest. From that, I only need the revision number so I can add it to my app for developers to see what the last commit was. Is there a way to run a command to only get the latest revision number only?
Thank you