执行后bzr commit
,有没有办法编辑与提交相关的评论?
例如,假设我使用以下 Bazaar 命令:
bzr commit -m "Some comment wit spelng errorz."
有没有办法更正与提交相关的评论:
"Some comment with spelling corrections."
答案1
bzr uncommit
将撤消提交但保持文件处于相同状态,因此您可以使用正确的消息进行新的提交。
执行后bzr commit
,有没有办法编辑与提交相关的评论?
例如,假设我使用以下 Bazaar 命令:
bzr commit -m "Some comment wit spelng errorz."
有没有办法更正与提交相关的评论:
"Some comment with spelling corrections."
bzr uncommit
将撤消提交但保持文件处于相同状态,因此您可以使用正确的消息进行新的提交。