-2

这听起来像是一个愚蠢的问题:P。据说,我在一个特定的提交中添加了一个注释,比如 commitno

git notes add -m "Sample Note" $commitno
git push origin refs/master/*

它在内部生成一个注释的提交(例如,commitID)。如何使用注释的 commitID 获取注释?

4

1 回答 1

0
$ git branch -v
* master 6ff9387 Initial commit

$ git notes add -m "sample note" 6ff9387

$ git notes
7a902ca6d69fbd2c440ac0a714380cfd8a387262 6ff9387eeab6449cdc2948e47882725722b1145f

$ git cat-file -p 7a902ca6d69fbd2c440ac0a714380cfd8a387262
sample note
于 2013-08-19T09:25:00.633 回答