- git push origin main
- git pull origin main
- git branch new-feature
- git checkout new-feature (브랜치 이동시)
- git checkout main
- git merge new-feature (new-feature 브랜치를 main에 병합)
- git clone 깃허브 주소/레포지토리.git
github 레포지토리를 로컬로 가져옴
- git pull
최신 변경 사항 가져오기
- git add,git commit
새로운 파일 추가 또는 수정
- git push
Github에 업로드





