1. git 설치
2. git 구성하기
2.1. username과 email 설정
2.2.. git 설정 확인
2.3.. git color ui 사용
2.4. 기본 인코딩을 cp949로 바꾸기
윈도에서는 LESSCHARSET=latin1 으로 설정해야 로그 메시지를 볼 수 있다.
2.5. 기본 에디터를 vim 으로 설정하기
sudo apt-get install build-dep git-core git-doc
2. git 구성하기
2.1. username과 email 설정
2.2.. git 설정 확인
git config --global --list
2.3.. git color ui 사용
git config --global color.ui "auto"
2.4. 기본 인코딩을 cp949로 바꾸기
git config --global i18n.commitEncoding cp949
git config --global i18n.logOutputEncoding cp949
git config --global i18n.logOutputEncoding cp949
윈도에서는 LESSCHARSET=latin1 으로 설정해야 로그 메시지를 볼 수 있다.
set LESSCHARSET=latin1
2.5. 기본 에디터를 vim 으로 설정하기
git config --global core.editor "vim"



