Git 입문
George Boorman
Curriculum Manager, DataCamp



.git는 수정하지 마세요!

git init mental-health-workspace
cd mental-health-workspace
git status
On branch main
No commits yet
nothing to commit (create/copy files and use "git add" to track)
git init
Initialized empty Git repository in /home/repl/mental-health-workspace/.git/
git status
On branch main
No commits yet
Untracked files:
(use "git add <file>..." to include what will be committed)
data/
report.md
nothing added to commit but untracked files present (use "git add" to track)
*Git은 추적되지 않은 수정된 파일이 있음을 인식합니다!
.git 디렉터리가 2개 있습니다
어느 .git 디렉터리를 업데이트해야 할까요?

Git 입문