考虑一个远程存储库,其中包含与每个提交相关联的一些提交和注释。如何从远程存储库中提取远程分支和notes ref?
以下命令无法检索笔记:
git fetch origin refs/notes/commits
有什么建议吗?
答案 0 :(得分:2)
我刚刚在Git website上找到了它:
$ git fetch origin refs/notes/*:refs/notes/*
或者你可以把它作为repo config .git/config
,看最后一行:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:schacon/kidgloves.git
fetch = +refs/notes/*:refs/notes/*
上面提到的文章中充满了breaks down
,difficult
,super difficult
和painful
等表达式。所以我会避免像瘟疫这样的笔记。