我正在尝试让GitPython 0.3将文件提交到存储库。粗略地说,我这样做如下:
data = ...
istream = repo.odb.store(gitdb.IStream(git.Blob.type, len(data), StringIO(data)))
entry = git.BaseIndexEntry((stat.S_IFREG | 0644, istream.binsha, 0, path))
index = git.IndexFile.from_tree(repo, repo.heads['master'])
index.add([entry])
index.commit(commit_message)
使用非裸存储库,这可以按预期工作。请注意,我从不明确接触文件系统,只接触 Git 的对象数据库。
但是,对于裸存储库,这是行不通的:该IndexFile.add
函数用git_working_dir
装饰器装饰:
@git_working_dir
def add(self, items, force=True, fprogress=lambda *args: None, path_rewriter=None,
write=True):
"""Add files from the working tree, specific blobs or BaseIndexEntries
to the index.
这个装饰器尝试 chdir 到 repo 的working_tree_dir
,以便可以正确解析路径引用。但是,working_tree_dir
对于裸存储库无效,会引发AssertionError
.
有谁知道为什么这个装饰器在这里?它只是用于路径解析,还是无法在裸存储库中创建索引?这是 GitPython 中的错误,还是我对 Git 的理解?
编辑:同样,IndexFile.remove
函数断言(通过default_index
装饰器)我们是默认索引。裸存储库当然没有默认索引,但它们可以没有索引对象吗?
@post_clear_cache
@default_index
def remove(self, items, working_tree=False, **kwargs):
"""Remove the given items from the index and optionally from
the working tree as well.