git config --system
git config --global
git config --local
git config user.name <user_name>
git config user.email <user_email>
git config core.autocrilf <value>
-> =false : 파일에 적용된 줄바꿈 문자와 상관없이 작업한 환경의 줄바꿈 문자 적용
-> "=true"사용! : 파일에 적용된 줄바꿈 문자를 lf(\n)로 변경한다.
-> =input : commit 할 때만 lf로 변경한다.
git config core.editor <editor_name>
이 에디터 쓰겠다~
git config init.defaultBranch <branch_name>
git config --l
git config --list
git config --l --show-origin
git config --list --show-origin
git config <key>
