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

时间:2015-08-12 08:03:02

标签: python git gitpython

我正在使用GitPython计算git中的暂存文件。

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

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

但对于分阶段文件,我找不到解决方案。

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

1 个答案:

答案 0 :(得分:10)

您已关闭,请使用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