Есть ли способ автоматического объединения заметок, если коммиты для этих заметок раздавлены?

Например:

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 

Ответы на вопрос(1)

Ваш ответ на вопрос