명령어 | 의미 |
---|---|
git init | git 초기 파일 생성 (해당 폴더에서 실행) |
git add .(점) | 모든 파일들을 git에 추가 |
git commit -m "메세지내용" | "메세지내용" 메모를 남기고 commit 실행 |
git ignore | Git 버전 관리에서 제외할 파일 목록을 지정하는 파일 |
git remote -v | 현재 origin 되어 있는 repository 알려줌 |
git remote add origin + 아까 복사했던 repository 주소 | origin에 repository 주소 연동 |
git pull origin main --allow-unrelated-histories | VSCode에서 나타난 변화 업로드 |
git push -u origin main | VScode -> Github 업로드 |
git branch | branch 목록 확인 |
git branch 이름 ex) git branch sam | sam이라는 새로운 branch 생성 |
git checkout branch이름 ex) git checkout sam | sam으로 branch 변경 |