SVN cannot set LC_CTYPE locale

后端 未结 12 2344
醉话见心
醉话见心 2021-01-30 03:39

I started getting the following error whenever i use SVN in my server:

svn: warning: cannot set LC_CTYPE locale
svn: warning: environment variable LC_CTYPE is UT         


        
12条回答
  •  情深已故
    2021-01-30 04:26

    If you want to fix this, set the “LC_ALL” variable manually.

    To make it permanent just edit the file “/etc/environment” and add the line:

    LC_ALL=C
    

    Save the file and exit the editor. In order for it to apply you have to logout of the current shell session. The next time you log in, the issue with SVN will be gone.

提交回复
热议问题