tracked
![[Git] Git의 파일형태 {Untracked/tracked}](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fbgsi8H%2Fbtrs3UEc27V%2F0d6nmRI1ZbZcYsadRShNi1%2Fimg.png)
[Git] Git의 파일형태 {Untracked/tracked}
Git의 파일 형태 Untracked 상태 '추적되지 않고 있는' 이라는 뜻으로 Git 에 의하여 변동사항이 전혀 추적되지 않고 있는 상태 git add 를 해주지 않은 상태 tracked 상태 Git 에 의하여 파일의 변동사항이 추적되고 있는 상태 Staged 상태 파일이 staging area 에 Staged(stage area에 올려진) 상태 새로 생성하거나 수정한 파일을 git add 해준 상태 Unmodified 상태 현재 파일이 가장 최신 commit 된 파일과 비교했을 때, 변화가 없는 상태 commit 을 하고 난 직후, Unmodified 상태 Modified 상태 현재 파일이 최신 commit 파일과 비교했을 때, 조금이라도 변화가 있는 상태 Add the file : Untracked..