我正在使用stepup来管理git注释,这些注释用于自动进行版本编号和发布注释。
我们其中一个回购中的注释似乎被弄乱了:
$ git log HEAD
commit 04c85f5ad7e5d60de8c9f0b8e08681e833751909
Author: Daniel Serodio <dserodio@i.dont.like.spam>
Date: Wed Oct 29 15:47:55 2014 -0200
non-deps removed
Notes (added):
splittest beta但是:
$ git notes show HEAD
error: No note found for object 04c85f5ad7e5d60de8c9f0b8e08681e833751909.有没有人知道原因和/或修复方法?
发布于 2014-10-30 08:16:41
git log支持配置条目notes.displayRef,我猜您必须将其设置为'*‘或'added’
要让git notes显示它,请尝试
git notes --ref=added show HEADhttps://stackoverflow.com/questions/26642337
复制相似问题