Created
April 11, 2013 23:21
-
-
Save jaimeivan/5368028 to your computer and use it in GitHub Desktop.
Al clonar un repositorio remoto con Git marca un error de perl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Entorno: MacOSx 10.7.5 | |
#Error | |
$ git clone ssh://... | |
perl: warning: Setting locale failed. | |
perl: warning: Please check that your locale settings: | |
LANGUAGE = (unset), | |
LC_ALL = (unset), | |
LC_CTYPE = "UTF-8", | |
LANG = (unset) | |
are supported and installed on your system. | |
perl: warning: Falling back to the standard locale ("C"). | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#--- Se crea un bash_profile | |
# Vamos al directorio de nuestro home | |
$ cd ~/ | |
# Creamos el archivo .bash_profile | |
$ touch .bash_profile | |
# Lo editamos | |
$ open -e .bash_profile | |
# En el archivo agregamos | |
export LC_CTYPE=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
# Ejecutamos el archivo para que haga los export | |
$ sh .bash_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment