Tag: svn

  • svn: Can’t convert string from ‘UTF-8’ to native encoding:

    “svn: Can’t convert string from ‘UTF-8’ to native encoding:” This usually happens with special characters in the file name, which the client cannot understand. Just set proper locale in the client to fix this issues, $ export LC_CTYPE=en_US.UTF-8 // make sure the locale is properly set. $ locale LC_CTYPE=en_US.UTF-8 ./arun

  • Streamlining SVN over SSH with Custom Port and Public Key Authentication

    Subversion (SVN) is a tried-and-true version control system that has powered countless software development projects. When using SVN with SSH for secure access, customizing your configuration can simplify your workflow and improve security. In this guide, we’ll explore how to set up SVN over SSH with a custom port number and public key authentication, making…