2022-12-26 [Git 최초 설정] 1. Git Bash 실행 2. $git config --global.user.email "홍길동@naver.com" 3. $git config --global.user.name "홍길동" 4. 브랜치명 변경 : $git config --global init.defaultBranch main 5. 잘 설정됐는 지 확인: 홍길동 부분 제외하고 입력 후 나오는 값 확인 [프로젝트 생성] 1. 폴더 생성 2. VS Code에서 생성한 폴더 오픈 3. Terminal > new terminal > git init 입력. [프로젝트 저장] 1. VS Code의 폴더 내 파일 생성, 파일명:"app.txt"(예시) 2. 현재 상태 저장 : git add app.txt 2-1..