Skip to content

Instantly share code, notes, and snippets.

@llagerlof
Forked from panchicore/bash
Last active August 6, 2019 13:36
Show Gist options
  • Save llagerlof/18dfe7dd4567c86c6e8770268946b40a to your computer and use it in GitHub Desktop.
Save llagerlof/18dfe7dd4567c86c6e8770268946b40a to your computer and use it in GitHub Desktop.
GIT error on push/pull: "remote: perl: warning: Setting locale failed" [SOLVED]
#!/bin/bash
# perl: warning: Setting locale failed.
# perl: warning: Please check that your locale settings:
# LANGUAGE = (unset),
# LC_ALL = (unset),
# LC_CTYPE = "UTF-8",
# LANG = "en_US.UTF-8"
# are supported and installed on your system.
# perl: warning: Falling back to the standard locale ("C").
export LANGUAGE=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
locale-gen en_US.UTF-8
dpkg-reconfigure locales
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment