Git 최초 설정 [프로젝트 생성시] Git 전역으로 사용자 이름과 이메일 주소 설정 🚨 GitHub 계정과는 별개 터미널 프로그램(iTerm2)에서 아래 명령어 실행 git config --global user.name "(사용자 이름)" git config --global user.email "(사용자 이메일)" 설정한 사용자 이름과 이메일 주소 확인 git config --global user.name git config --global user.email 기본 브랜치명 변경 (master salve 등 -> main) git config --global init.defaultBranch main GitHub remote [intellij 터미널&gitHub 연동] git remote add ori..