如何从 emacs 内向 bzr 分支提交更改?
我在 emacs 中进行大部分开发,并使用 bzr 进行版本控制。我推断 cx v = 相当于 bzr diff,但我不清楚如何从 emacs 内进行提交,或者各种 bzr 命令如何映射到 emacs 键绑定。谁能建议最好的方法或给我指出教程?
I do most development from within emacs, and I use bzr for version control. I infer that c-x v = is equivalent to bzr diff, but it is not clear to me how I can make commits from within emacs, or how various bzr commands map to emacs key bindings. Can anyone suggest the best approach or point me to a tutorial?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Bazaar
bzr
命令是VC管理的后端工具之一。因此,您可以使用所有 VC 命令来使用 bzr 后端:我已配置 Cx v = 使用以下命令调用 ediff-revision我的 .emacs 中的命令:
Bazaar
bzr
command is one of the backend tool managed by VC. Thus you can use all your VC commands to use the bzr backend :I've configured C-x v = to call ediff-revision using the following command in my .emacs :
Cx v v,或
vc-next-action
。看一下 VC 部分< emacs 手册中的 /a>C-x v v, or
vc-next-action
. Take a look at the VC section in the emacs manual看起来 DVC 模式正是您所追求的。抱歉,我没有使用过它,所以我无法告诉你任何有关它的信息。
Looks like the DVC mode is what you're after. Sorry, I haven't used it, so I can't tell you anything about it.