git에서 commit하려면 우선 staging area에 파일을 add해야 한다. $ git status On branch main Your branch is up to date with 'origin/main'. Untracked files: (use "git add ..." to include in what will be committed) 04_kn_train_test.py 05_kn_preprocessing.py nothing added to commit but untracked files present (use "git add" to track) git status 하여 현재 파일 상태를 본다. $ git add . git add . 하여 모두 staging 해보았다. $ git s..