IT_susu

[git] git의 상태 변경 본문

Tools

[git] git의 상태 변경

고베베 2019. 1. 23. 16:20

git의 세가지 상태

working directory - 작업공간

index(stage aria) - 커밋 전 단계

head - 커밋 후 단계


커밋( commit )

확정 짓기.


명령어

git status : git 상태 확인하기

git add <file> : index에 파일 놓기

git commit -m '<message>' : head에 파일 놓기

git commit -am '<message>' : add와 commit을 한번에 하기 ( 수정사항만 있을 경우 가능 )

git commit -h : 커밋과 관련한 도움말 보기

git commit --amend : 커밋 수정 (i > 커밋 메시지 작성 > esc, :wq enter)

git rm --cached <file> : 커밋하기 전에 unstage하기. index상태에서 working directory로 다시 변경


'Tools' 카테고리의 다른 글

[git] 브랜치와 병합  (0) 2019.01.24
[git] 로그와 reset  (0) 2019.01.23
[vscode] terminal git bash로 변경하기  (0) 2019.01.22
nvm 설치 및 사용  (0) 2019.01.22
[chrome] console 창 스타일 적용하기  (0) 2019.01.17
Comments