명령어 | 수행 내용 |
---|---|
git init | 로컬 저장소를 생성하기 |
git clone [repository url].git . | 원격 저장소를 현재 폴더에 가져오기 * repository 이름의 폴더에 원격 저장소를 가져올 때 git clone [repository url].git |
git add [file path] | 현재 변경 사항을 로컬 stage에 올리기 * 모든 변경 사항: git add . 특정 파일 형식의 변경 사항만: git add *.py |
git commit -m "메시지 내용" | stage에 올라간 변경 사항을 메시지와 함께 로컬에 반영하기 |
git push [remote repository][branch name] | 원격 저장소로 변경 사항을 올리기 |
git status | 현재 상태 확인하기 |
git pull | 로컬 저장소와 원격 저장소 동기화 하기 |
git commit --amend | 커밋 수정하기 |
git branch [branch name] | branch 생성 |
git branch -d [branch name] | branch 삭제 |
git switch [branch name] | branch 변경 |
참고 사이트 :