맥에서 GIT을 설정하는 방법.
git config --global user.name “TEST”
git config --global user.email “TEST@TEST.com”
git config --global color.ui “auto”
설정 정보 확인
git config --global --list
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")
.bash_profile 에 아래 내용 추가.
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8