[Git/Github] git config 정보 확인, 수정하기

soyi·2022년 2월 12일
0

Git / Github

목록 보기
9/9
post-thumbnail

💻 git configuration 확인하기

📌 git configuration 전체 확인하기

$ git config --list

// then...
user.name=John Doe
user.email=johndoe@example.com
color.status=auto
color.branch=auto
color.interactive=auto
color.diff=auto
...

📌 git configuration 특정 정보 확인하기

$ git config user.name	// 이름 확인 John Doe
$ git config user.email	// 이메일 확인 johndoe@example.com

💻 git configuration 수정하기

📌 git configuration 특정 정보 설정하기

// user.name을 'John Doe'로 설정
$ git config --global user.name "John Doe"	

// user.email을 johndoe@example.com로 설정
$ git config --global user.email johndoe@example.com	

📌 git init default branch name 설정

git init을 하면 master라는 이름의 기본 브랜치가 생성된다. 이렇게 생성되는 기본 브랜치의 이름을 바꿀 수 있다.

// initial branch name을 'main'으로 설정
$ git config --global init.defaultBranch main



References

profile
ヾ(^▽^*)))

0개의 댓글