Git을 접하고 가장 생소했던 부분 중 하나인 File status.
기존 CVS 비교하며 이해하려 하는데, 다소 다른 개념때문에 혼란스러움. ㅋㅋ
Untracked |
Tracked |
||||||
Unmodified |
Modified |
Staged |
|||||
|
-------------------------------------------------------------------------------------------------------------------------> git add [something] (for tracking a new file) |
|
|||||
|
|
|
----------------> edit file |
--------------------------------------------> git add [something] (for staging the modified file) |
|
||
| <----------------------------------- for deleting : git rm [something] git commit for untracked : git rm --cached [ something] git commit |
<----------------------------------------------------------------- git commit [something] |
|
중요한 사항은 아래와 같음.
1. commit을 해야 최종 반영됨.
2. 새로운 파일의 추가 혹은 기 추가된 파일의 수정을 반영하기 위해서는, 우선 git add하여 staged 상태로 만들고, 그 후 commit 하여야 함.
3. 삭제의 경우도, git rm 이후 commit 하여야 반영됨