有没有更简单的方法来编辑git笔记?

时间:2012-11-13 08:55:20

标签: git

还有其他方法可以编辑git备注,比如设置默认编辑器等,而不是git notes --ref=$ABC edit $COMMIT

1 个答案:

答案 0 :(得分:0)

git notes自1.7.1 http://git.661346.n2.nabble.com/git-notes-and-core-editor-config-td5910253.html遵守您的编辑器设置。

编辑:如果非常想要,您可以学习http://alblue.bandlem.com/2011/11/git-tip-of-week-git-notes.html

git checkout notes/commits
[point editor at the commit hash you want to]
git commit -am 'whatever'
git update-ref refs/notes/commits 1234567

其中1234567是[提交报告的哈希]。啊。但可行。