0

我正在尝试让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.
4

2 回答 2

0

API 参考

git.index.util.git_working_dir(func)

将当前工作目录更改为 git 存储库之一的装饰器,以确保正确处理相对路径

裸 Git 存储库没有工作目录,因此该add功能正在挂起。

但是,裸 Git 存储库也没有索引[1]

于 2010-09-02T19:06:13.750 回答
0

在仔细检查该IndexFile.add功能后,我意识到我只需要很少的功能。事实上,只需用add这两行替换调用就可以了:

index.entries[index.entry_key(entry)] = git.IndexEntry.from_base(entry)
index.write()

我仍然想知道这是否是一个好主意,虽然......

于 2010-09-02T19:26:58.087 回答