Die Datei test.txt ist neu erstellt und wird dem git-index (staging area) hinzugefügt:
$ git add test.txt
Warum auch immer wird diese Datei gelöscht:
$ rm test.txt
Ein manuelles Entfernen der Datei test.txt aus der Staging-Area mittels dem bei „git status“ vorgeschlagenem „git reset“ schlägt fehl: „unknown revision or path not in the working tree.“ Es hilft „git remove“:
$ git rm --cached test.txt