우아한 테크코스/테크코스

[Git] 초기 설정하기

jamie. 2020. 3. 9. 14:13
반응형

사용자 이름 & 메일 주소 설정

 Git의 commit 로그 등에 사용

 GitHub 레파지토리를 공개하는 경우에도 사용되므로, 공개되어도 문제 없는 이름과 메일 주소를 사용할 것

 한글&한자보다는 영어를 사용하는 편이 좋음, 실명이 아닌 닉네임이어도 상관 없음

$ git config --global user.name "Firstname Lastname"
$ git config --global user.email "email@example.com
$ vi ~/.gitconfig
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
        name = jamie
        email = jamie@example.com

색상 설정

 다양한 명령어에서 나오는 출력을 읽기 쉽도록 색상 설정

$ git config --global color.ui auto
$ vi ~/.gitconfig
# 아래 내용이 추가됨
[color]
        ui = auto
반응형