4.2.2 깃에서 새 파일 생성 확인
워킹 디렉터리에 새 파일이 생성되었습니다. 워킹 디렉터리에 새 파일이 추가되면 깃은 변화된 상태를 자동으로 감지합니다. 이때 깃 상태를 확인할 수 있는 명령어가 status입니다.
status 명령어를 입력하면 메시지가 출력되는 것을 볼 수 있습니다.
infoh@hojin MINGW64 /e/gitstudy04 (master)
$ git status 상태 확인
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
index.htm 새로운 파일이 등록된 것을 확인
nothing added to commit but untracked files present (use "git add" to track)