동그라미 위에는 새로 커밋한 파일

동그라미 안에는 커밋해시


$ git reset c2

$ git status

On branch s1

Changes not staged for commit:

  (use "git add/rm <file>..." to update what will be committed)

  (use "git restore <file>..." to discard changes in working directory)

        deleted:    c2.txt


Untracked files:

  (use "git add <file>..." to include in what will be committed)

        s1.txt


no changes added to commit (use "git add" and/or "git commit -a")


이딴식으로 c2가 삭제됬다고 나오는데 

원래 reset하면 head를 해당커밋으로 이동하는거라서 s1이 삭제되고 c1, c2가 남아있는게 맞지않음?