例如:
git commit -am "Something"
git notes append -m "Dark "
git commit -am "Something"
git notes append -m "Side"
git rebase -i
# now I squash two commits and I expect to see "Dark Side" here
# but it show that note is undefined
git notes show
问题几乎可以肯定是您的配置;假设您有其他默认配置,则需要将notes.rewriteRef
选项设置refs/notes/commits
为才能正常工作。
因此,您需要的魔术命令是:
git config notes.rewriteRef refs/notes/commits
在上述之后,压缩提交应该加入两个注释。
但是,它们之间会有换行符;我怀疑禁用该行为以便您在与示例相同的行上进行操作将需要在 Git 源代码中进行修改。
来自git help config
(强调我的):
notes.rewriteRef
在重写期间复制注释时,指定应复制其注释的(完全限定的)参考。ref 可能是一个 glob,在这种情况下,所有匹配的 ref 中的注释都将被复制。您也可以多次指定此配置。
没有默认值;您必须配置此变量以启用笔记重写。将其设置
refs/notes/commits
为启用对默认提交注释的重写。这个设置可以被
GIT_NOTES_REWRITE_REF
环境变量覆盖,它必须是一个冒号分隔的 refs 或 glob 列表。
(另见 和 的描述notes.rewriteMode
,notes.rewrite.<command>
两者都默认为我们需要的值,即concatenate
和true
。)
以下是上述测试的类似内容:
$ git init
Initialized empty Git repository
$ git config notes.rewriteRef refs/notes/commits
$ git add a # Here's a file I created earlier
$ git commit -am 'Initial commit'
[master (root-commit) 93219cb] Initial commit
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 a
$ echo a >>a
$ git commit -am 'Something'
[master 3c17aca] Something
1 files changed, 1 insertions(+), 0 deletions(-)
$ git notes append -m 'Dark '
$ echo b >>a
$ git commit -am 'Something'
[master 6732d81] Something
1 files changed, 1 insertions(+), 0 deletions(-)
$ git notes append -m 'Side'
$ git rebase -i HEAD~2 # Will squash the last commit into the one before and accept the default commit message.
[detached HEAD 552668b] Something
1 files changed, 2 insertions(+), 0 deletions(-)
Successfully rebased and updated refs/heads/master.
$ git show
commit 552668b4b96e4b2f8fcd7763dcc115edd159eb89 (HEAD, master)
Author: me_and <not.an@email.address>
Date: Wed Jan 30 10:09:10 2013 +0000
Something
Something
Notes:
Dark
Side
diff --git a/a b/a
index 7898192..4ac2bee 100644
--- a/a
+++ b/a
@@ -1 +1,3 @@
a
+a
+b