GitPython - 获取未经跟踪的文件

时间:2014-09-18 12:16:20

标签: python git gitpython

GitPython tutorial提到了untracked_files属性作为获取特定git存储库的未跟踪文件数组的方法。

但是,引用此属性会导致以下错误。

AttributeError: 'Repo' object has no attribute 'untracked_files'

GitPython中获取未跟踪文件列表的方法是什么?

1 个答案:

答案 0 :(得分:5)

在GitPython v0.2中添加了untracked_files属性(参见change log)。

如果需要,您应检查已安装的版本并进行升级。