我正在将dulwich加载到ironpython中,当我尝试从How to pull from the remote using 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
的情况下,启用适当的呼叫,默认情况下由于性能原因而禁用。这是一个类似的案例,如果不是,我该怎么办?
编辑: