3

我正在与 dulwich 合作一个项目,我有时需要通过提交 ID、有时通过标签、有时通过分支名称来克隆存储库。我遇到了标签案例,它似乎适用于某些存储库,但不适用于其他存储库。

这是clone我写的“”辅助函数:

from dulwich import index
from dulwich.client import get_transport_and_path
from dulwich.repo import Repo


def clone(repo_url, ref, folder):
    is_commit = False
    if not ref.startswith('refs/'):
        is_commit = True
    rep = Repo.init(folder)
    client, relative_path = get_transport_and_path(repo_url)

    remote_refs = client.fetch(relative_path, rep)
    for k, v in remote_refs.iteritems():
        try:
            rep.refs.add_if_new(k, v)
        except:
            pass

    if ref.startswith('refs/tags'):
        ref = rep.ref(ref)
        is_commit = True

    if is_commit:
        rep['HEAD'] = rep.commit(ref)
    else:
        rep['HEAD'] = remote_refs[ref]
    indexfile = rep.index_path()
    tree = rep["HEAD"].tree
    index.build_index_from_tree(rep.path, indexfile, rep.object_store, tree)
    return rep, folder

奇怪的是,我能做到

 clone('git://github.com/dotcloud/docker-py', 'refs/tags/0.2.0', '/tmp/a')

clone('git://github.com/dotcloud/docker-registry', 'refs/tags/0.6.0', '/tmp/b')

失败了

NotCommitError: object debd567e95df51f8ac91d0bb69ca35037d957ee6
type commit
[...]
 is not a commit

两个 ref 都是标签,所以我不确定我做错了什么,或者为什么代码在两个存储库上的行为不同。将不胜感激任何帮助解决这个问题!

4

1 回答 1

2

refs/tags/0.6.0 是一个带注释的标签。这意味着它的 ref 指向一个 Tag 对象(然后它引用了一个提交对象),而不是直接指向一个 Commit 对象。

在这一行:

if is_commit:
     rep['HEAD'] = rep.commit(ref)
 else:
     rep['HEAD'] = remote_refs[ref]

您可能只想执行以下操作:

if isinstance(rep[ref], Tag):
     rep['HEAD'] = rep[ref].object[1]
else:
     rep['HEAD'] = rep[ref]
于 2013-10-27T08:35:52.260 回答