本文介绍了使用 emacs(和 magit?)访问给定提交/分支/等中的文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我想查看 foo.bar 在某些特定提交中的样子 那么我可以调用:

If I want to see how foo.bar looked like in some certain commit <COMMIT_ID> then I can invoke:

git show <COMMIT_ID>:foo.bar

很好...我怎样才能在 emacs 中做到这一点?使用 magit?使用 vc 吗?假设我正在访问文件 foo.bar,我想查看它在 中的样子.

Nice... How can I do it in emacs? Using magit? Using vc? Say I am visiting the file foo.bar and I want to look up how it looked in <COMMIT_ID>.

推荐答案

在 Emacs 中执行此操作的规范方法是使用 VC:文件缓冲区中的 Cx v ~ will ask you for a revision然后显示该文件在该修订版中的样子.它应该适用于 VC 支持的任何控制系统,例如 Git、Bzr、...

The canonical way to do that in Emacs is to use VC: C-x v ~ from the file's buffer will ask you for a revision and then show that file as it was at that revision. It should work for any control system supported by VC, such as Git, Bzr, ...

这篇关于使用 emacs(和 magit?)访问给定提交/分支/等中的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 23:25