这可能听起来像个愚蠢的问题:P。 据说,我在特定的提交中添加了一个注释,比如commitno
git notes add -m "Sample Note" $commitno
git push origin refs/master/*
在内部为注释(例如,commitID)生成提交。 如何使用注释的commitID获取注释?
答案 0 :(得分: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