728x90 반응형 .git1 [GIT] GIT Setup GIT Setup ■ 사용자 정보 설정 1) 이름과 이메일 설정 및 변경 git config --global user.name “(본인 이름)” git config --global user.email “(본인 이메일)” * 프로젝트마다 이름과 이메일을 다르게 하고 싶다면 --global을 붙이지 않는다. 2) 이름과 이메일 확인 git config --global user.name git config --global user.email 3)모든 설정 확인 git config --list 4)기본 브랜치명 설정 git config --global init.defaultBranch main(or master) * 기본 브랜치명을 master에서 main으로 바꾸는 추세. ■ GIT 저장소 만들기 1) GIT.. 2023. 12. 20. 이전 1 다음 728x90 반응형