如何以非交互方式挑选评论?

How to cherry-pick with a comment non interactively?

我有一个脚本,可以在向评论添加更多信息的同时挑选一个提交。今天我运行git cherry-pick然后git commit --amend修改commit message

我可以看到有 -e 标志,但它似乎是交互式的。有没有办法 运行 git cherry-pick 以非交互方式发送消息?

我决定使用 --no-commit 标志调用 git cherry-pick。然后我明确提交新消息。目前我没有看到更好的解决方案。