
git config --global init.defaultBranch main
master라고 부르는 기본 브랜치를 main으로 명칭 변경하여 오류가 발생하지 않도록 한다.

user명 정하기 : git config --global user.name "user name작성"
user email 정하기 : git config --global user.email "email번호"
global : 이 컴퓨터에서 깃으로 관리하는 모든 프로젝트는 global하게, 이 유저명,유저 email으로만 할 것이다.

user명,user email 확인 : git config --list 작성 후 user.name, user.email 확인