我正在尝试使用pygit2库。
似乎我陷入了第一步。它的文档没有解释如何创建blob并将其添加到树中。它主要围绕如何使用现有的git存储库,但我想创建一个并添加blob,commit,...到我的repo。是否可以直接从文件创建blob,还是应该读取文件内容并设置blob.data?from pygit2 import Repository
from pygit2 import init_repository
bare = False
repo = init_repository('test', bare)
如何创建blob或树并将其添加到存储库?
答案 0 :(得分:7)
python绑定不允许您直接从文件创建blob,因此您必须将文件读入内存并使用Repository.write(pygit2.GIT_OBJ_BLOB, filecontents)
创建blob。
然后,您可以使用TreeBuilder
创建树,例如
import pygit2 as g
repo = g.Repository('.')
# grab the file from wherever and store in 'contents'
oid = repo.write(g.GIT_OBJ_BLOB, contents)
bld = repo.TreeBuilder()
# attributes is whether it's a file or dir, 100644, 100755 or 040000
bld.insert('file.txt', oid, attributes)
treeoid = bld.write()