使用 PCL-CVS 通过 emacs 处理多个 CVS 存储库?
有没有办法让PCL-CVS同时在多个CVS存储库上运行?每个存储库都应该有自己的*cvs*
缓冲区。
Is there a way to get PCL-CVS to operate on multiple CVS repositories at the same time? Each repository should get its own *cvs*
buffer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要大于 8 的前缀 arg。例如
Cu Cu Mx cvs-update
我在 Emacs 手册中找到了答案。
cvs-examine 是“pcvs.el”中的交互式编译 Lisp 函数。
在指定的目录中运行“cvs -n update”。
即检查需要做什么,但不要更换光盘。
将输出输入到cvs缓冲区并在其上运行“cvs-mode”。
使用前缀参数,提示输入要使用的目录和 cvs FLAGS。
前缀 arg > 8(例如:Cu Cu),
防止重复使用现有的cvs缓冲区。
可选参数 NOSHOW 如果非 nil 则表示不显示缓冲区。
A prefix arg bigger than 8 is needed. e.g.
C-u C-u M-x cvs-update
I found the answer in the Emacs manual.
cvs-examine is an interactive compiled Lisp function in `pcvs.el'.
Run a 'cvs -n update' in the specified DIRECTORY.
That is, check what needs to be done, but don't change the disc.
Feed the output to a cvs buffer and run `cvs-mode' on it.
With a prefix argument, prompt for a directory and cvs FLAGS to use.
A prefix arg >8 (ex: C-u C-u),
prevents reuse of an existing cvs buffer.
Optional argument NOSHOW if non-nil means not to display the buffer.