Git status incorrectly saying files are deleted
问题 I cloned a repository and edited exactly one file in it, tip.php , and then added it using git add . But when I next run git status I get the following: $ git status On branch removeRatings Changes to be committed: (use "git reset HEAD <file>..." to unstage) deleted: .htaccess deleted: COPYRIGHT.txt modified: tip.php Even though neither .htaccess or COPYRIGHT.txt was deleted, as I can see them right in the directory. Anyone have a reason why this would happen? I'm running Git Bash on Windows