Git 전역으로 사용자 이름과 이메일 주소를 설정
GitHub 계정과는 별개
git config --global user.name "(이름)"
ex) git config --global user.name "hohoho"
git config --global user.email "(이메일)"
ex) git config --global user.email "hohoho@hoho.com"
기본 브랜치명 변경
git config --global init.defaultBranch main (요즘은 master를 쓰지 않는다고함.)