깃의 필수 명령어
repository 생성
git init
스테이징
git add .
커밋
git commit -m “메시지”
상태 확인
git status
리모트에 저장소가 없다면
github에서 new repository 만들고
로컬하고 리모트 연결
git remote add origin ‘주소’
최초의 push
git push -u origin master
푸시
git push
리모트 레포지토리를 내 로컬로 복사
git clone ‘주소’
리모트 변경사항을 로컬로 업데이트
git pull