GIT 명령어 정리

TJ·2021년 9월 11일
0
post-thumbnail

상태 확인

  • 상태 확인 : git status

원격 저장소 연결


INDEX(STAGE)에 추가

  • test.txt INDEX(STAGE)에 추가 : git add test.txt
  • 모든 파일 INDEX(STAGE)에 추가 : git add .

INDEX(STAGE)에서 제외

  • test.txt INDEX(STAGE)에서 제외 : git reset HEAD test.txt
  • 모든 파일 INDEX(STAGE)에서 제외 : git reset HEAD

COMMIT

  • COMMIT : git commit -m "커밋 코멘트 내용"

PUSH

  • PUSH : git push

PULL

  • PULL : git pull
profile
TJ

0개의 댓글