Hello,
When I execute the following command:
svnlook changed {path} -r {rev}
where {path} is the repository path and {rev} is the revision number, I get the following output:
U trunk/this/is/a/path/Mon fichier avec un nom accentu,.txt
The output should actually be:
U trunk/this/is/a/path/Mon fichier avec un nom accentué.txt
The "é" and other accentuated characters are not shown properly...
Is there any way for svnlook to output characters properly?
I know I can use "svn log" with the "--xml" option to get the proper encoding , but I need this for a pre-commit hook, and svn.exe can only get information from revisions, not transactions.
Thanks