SVN Error: Can't convert string from native encoding to 'UTF-8'

前端 未结 11 989
花落未央
花落未央 2020-12-13 06:29

I\'ve got a post-commit hook script that performs a SVN update of a working copy when commits are made to the repository.

When users commit to the repository from th

11条回答
  •  眼角桃花
    2020-12-13 06:58

    Yet another example:

    $ svn update
    svn: Error converting entry in directory '.' to UTF-8
    svn: Can't convert string from native encoding to 'UTF-8':
    
    $ export LC_CTYPE=en_US.UTF-8
    
    $ svn update
    

    (... and all is fine now)

提交回复
热议问题