Git:如何从远程存储库中检索notes ref?

时间:2013-09-11 06:07:11

标签: git

考虑一个远程存储库,其中包含与每个提交相关联的一些提交和注释。如何从远程存储库中提取远程分支和notes ref?

以下命令无法检索笔记:

git fetch origin refs/notes/commits

有什么建议吗?

1 个答案:

答案 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 downdifficultsuper difficultpainful等表达式。所以我会避免像瘟疫这样的笔记。