Files
Hans-Christoph Steiner 52f0f82a9b separate deleted and modified in git repo status JSON
Running `git status` from the command line shows deleted and modified:

```console
$ git status
On branch main
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:    repo/index.css
	modified:   repo/index.html
```

But GitPython via `git ls-files` includes deleted files in the modified list:

```
>>> git_repo.git().ls_files(deleted=True).split()
['repo/index.css']
>>> git_repo.git().ls_files(modified=True).split()
['repo/index.css', 'repo/index.html']
```

This was very confusing when troubleshooting #1344
2026-09-11 12:40:05 +02:00
..
2026-07-21 10:44:38 +00:00
2026-08-27 13:54:58 +00:00
2026-07-21 10:44:38 +00:00
2026-06-11 18:44:29 +02:00