在德威,我如何承诺分支而不是HEAD?

时间:2011-08-01 21:33:19

标签: python git dulwich

显然repo.do_commit(message ='test commit',committer ='Name')只提交给refs / heads / master。

有没有办法将当前的commit ref设置为refs / heads / master的另一个?

或者是通过创建Commit对象(如文档中的教程所示)并将其父级设置为分支提交ID之一来提交分支的唯一方法吗?

如果这是真的,那么除了提交refs / heads / master之外,还会使用repo.do_commit吗?

1 个答案:

答案 0 :(得分:1)

手动创建Commit对象然后设置标记确实是在上一版本中提交非HEAD分支的唯一方法。

trunk中的

do_commit()支持可用于提交其他分支的“ref”参数。

http://www.samba.org/~jelmer/dulwich/apidocs/dulwich.repo.BaseRepo.html#do_commit