I would like to do
svn commit -m \"\"
But message should have two lines:
Commit by: firstuser Bug track: 92
How about using the -F parameter to get the log message from a file?
-F
Then, you could do this (untested):
ECHO Commit by: firstuser>SvnLog.txt ECHO Bug track: 9283>>SvnLog.txt SVN COMMIT -F SvnLog.txt