$ 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 config user.name // 이름 확인 John Doe
$ git config user.email // 이메일 확인 johndoe@example.com
// 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을 하면 master
라는 이름의 기본 브랜치가 생성된다. 이렇게 생성되는 기본 브랜치의 이름을 바꿀 수 있다.
// initial branch name을 'main'으로 설정
$ git config --global init.defaultBranch main