2014-10-29 1 views
1

stepup을 사용하여 버전 번호와 릴리스 노트를 자동화하는데 사용되는 git 노트를 관리하고 있습니다. 우리의 repos 중 하나`git log`는`git notes`가 아닌 노트를 보여줍니다.

노트는 엉망이 될 것 같다 : 그러나

$ git log HEAD 

commit 04c85f5ad7e5d60de8c9f0b8e08681e833751909 
Author: Daniel Serodio <[email protected]> 
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. 

사람이 원인 및/또는 이것에 대한 수정 프로그램에 대한 단서를 가지고 있습니까?

답변

3

git log는면 난 당신이 중 하나를 '*'또는

하려면 '추가'로 설정해야 추측하고있는 구성 항목의 notes.displayRef을 git notes

git notes --ref=added show HEAD 
시도 보여
관련 문제