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을 업데이트해야 할까요?

Git 입문