Subversion tips for today
Here are two simple Subversion tasks and examples of how to do them:
How to change a Subversion log message you’ve already commited:
svnadmin setlog [repopath] -r [revision] [path to text file with new log message] --bypass-hooks
Example:
svnadmin setlog c:/ARMS -r 186 c:/newlog.txt --bypass-hooks
More help:
svnadmin help setlog
How to get a list of all of the files in a repository: (Windows)
svn list -r [revision] -R [repoURL] > [textfileout.txt]
Example:
svn list -r "HEAD" -R svn://arms.aero:3392/ARMS/trunk > C:\anyfile.txt
Note: If you hit an error try replacing “HEAD” with just HEAD
More help:
svn help list
-





