如何在编辑提交注释时取消 svn 提交(命令行客户端)
我在 Linux 上使用命令行 SVN 客户端。我输入了 svn commit ,它调用了 vim 来编辑提交注释。当我查看修改和添加的文件列表时,我决定取消提交。但我怎样才能做到这一点呢?是不是已经太晚了?
I'm using the command-line SVN client on Linux. I typed svn commit
which invoked vim
to edit the commit notes. When I looked into the list of modified and added files I decided to cancel the commit. But how can I achieve that? Is it already too late?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需退出编辑器而不保存< /a>,系统将要求您在命令行上继续或取消。
像这样:
如果您已经保存了消息,请用空消息覆盖您的消息,再次保存,然后退出编辑器。然后,
svn
也会因为空消息而中止。Just quit the editor without saving, you will be asked to continue or cancel back on the command line.
Like this:
If you've already saved the message, overwrite your message with the empty message, save again, and quit the editor.
svn
will then abort because of the empty message as well.