标签: python git gitpython
GitPython tutorial提到了untracked_files属性作为获取特定git存储库的未跟踪文件数组的方法。
但是,引用此属性会导致以下错误。
AttributeError: 'Repo' object has no attribute 'untracked_files'
GitPython中获取未跟踪文件列表的方法是什么?
答案 0 :(得分:5)
在GitPython v0.2中添加了untracked_files属性(参见change log)。
untracked_files
如果需要,您应检查已安装的版本并进行升级。