最近 python-git パッケージをインストールしましたが、次のリンクでチュートリアルを実行しようとすると、特定のメソッドが欠落していることに気付きました...
http://packages.python.org/GitPython/0.3.2/tutorial.html#tutorial-label
これが私の通訳から出てきたものです:
>>> from git import *
>>> repo = Repo.init('/home/deostroll/scripts/synchost')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: type object 'Repo' has no attribute 'init'
>>> repo = Repo('/home/deostroll/scripts/synchost')
>>> repo.is_dirty()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'bool' object is not callable
>>>