如何使用 GitPython 获取暂存文件?

How to get staged files using GitPython?

我正在使用 GitPython 对 git 中的暂存文件进行计数。

对于修改过的文件,我可以使用

repo = git.Repo()
modified_files = len(repo.index.diff(None))

但是对于暂存文件我找不到解决方案。

我知道 git status --porcelain 但我正在寻找其他更好的解决方案。 (我希望使用 gitpython 而不是 git 命令,脚本会更快)

你很接近,使用repo.index.diff("HEAD")在暂存区获取文件。


完整演示:

首先创建一个测试仓库:

$ cd test
$ mkdir repo && cd repo && touch a b c && git init && git add . && git commit -m "init"
$ echo "a" > a && echo "b" > b && echo "c" > c && git add a b
$ git status
On branch master
Changes to be committed:
        modified:   a
        modified:   b
Changes not staged for commit:
        modified:   c

现在签到 ipython:

$ ipython
In [1]: import git
In [2]: repo = git.Repo()
In [3]: count_modified_files = len(repo.index.diff(None))
In [4]: count_staged_files = len(repo.index.diff("HEAD"))
In [5]: print count_modified_files, count_staged_files
1 2