dulwichを ironpython にロードしています。以下のコード例を実行しようとすると、dulwich を使用してリモートからプルする方法は?
from dulwich.repo import Repo
from dulwich.client import HttpGitClient
local = Repo.init("local", mkdir=True)
client = HttpGitClient('http://github.com/adammorris/')
remote_refs = client.fetch("history.js.git",local)
local["HEAD"] = remote_refs["refs/heads/master"]
私は得る: AttributeError: 'module' object has no attribute 'fsync'
.
AttributeError: 'module' object has no attribute '_getframe'
渡す場合-X:Frames
、パフォーマンス上の理由からデフォルトで無効になっている適切な呼び出しが有効になることを知っています。これは同様のケースですか?そうでない場合はどうすればよいですか?
編集: