git configuration
환경 설정 보기
git config --global --list
사용자명 등록 (필수)
git config --global user.name <사용자명>
ex : git config --global user.name gilgil
이메일 등록 (필수)
git config --global user.email <이메일주소>
ex : git config --global user.email gilgil@gilgil.net
git cache 설정
git config --global credential.helper cache
ex : git config --global credential.helper "cache --timeout=360000"
git ssl certificate verify 무시
git config --global http.sslverify "false"
from http://www.gilgil.net/?document_srl=360066