You are here:
» Svn: Can't Convert String From Native Encoding To 'UTF-8'
svn: Can't convert string from native encoding to 'UTF-8'
This Comment will be submitted for moderation and will not be accessible to other users until it has been approved.
I am importing into a new repository into SVN and I am getting this error: "Can’t convert string from ‘UTF-8′ to native encoding:”. Can somebody thrown light on the fix?
Created by programmer

2 years 13 weeks ago
Tags:
To fix this error message you have to set your current locale appropriately:
Execute
<code>
shell> export LC_CTYPE=en_US.UTF-8
</code>
Post Comment