초기 세팅 Command 설명 git init 디렉토리를 git에 사용하도록 Repository 생성 git config user.name "사용자 이름" 작성자 이름 설정 (안하면 깃허브 나무 안심어짐) git config email.name "이메일" 작성자 이메일 설정 (안하면 깃허브 나무 안심어짐) git remote add origin 깃허브 주소 깃허브 주소를 Remote Repository로 설정 git push -set-upstream origin main Local Repository를 처음으로 Remote Repository로 보냄 git help 명령어 Local Repository를 처음으로 Remote Repository로 보냄 git status git의 상태 출력 git con..