安装 git-自动提交模式
Installing git-auto-commit-mode
我尝试根据 this 手册安装 git-auto-commit-mode
。
- 将该包移动到我计算机中的某个目录
- 在我的一些存储库的控制台中,我输入:
(add-to-list 'load-path "/Users/kuna/Library/git-auto-commit-mode-master")
但是作为输出我得到了:
>
>
>
我需要安装程序来帮助我在更改某些文件、添加新文件或删除文件时测试自动提交。
我应该如何安装它并尝试它是如何工作的?我对做这样的事情很陌生。需要非常简单和基本的答案。谢谢
在 ryuslash/git-auto-commit-mode
, you could consider the Directory Variable one 中列出的安装模式之外。
If you put a file with a special name .dir-locals.el
in a directory, Emacs will read it when it visits any file in that directory or any of its subdirectories, and apply the settings it specifies to the file’s buffer.
Emacs searches for `.dir-locals.el’ starting in the directory of the visited file, and moving up the directory tree.
因此,在 git 存储库的根目录下添加一个 .dir-locals.el
文件,然后放入其中(如果您使用的是 Emacs 24 或更新版本)
:
((nil . ((eval git-auto-commit-mode 1))))
我尝试根据 this 手册安装 git-auto-commit-mode
。
- 将该包移动到我计算机中的某个目录
- 在我的一些存储库的控制台中,我输入:
(add-to-list 'load-path "/Users/kuna/Library/git-auto-commit-mode-master")
但是作为输出我得到了:
>
>
>
我需要安装程序来帮助我在更改某些文件、添加新文件或删除文件时测试自动提交。
我应该如何安装它并尝试它是如何工作的?我对做这样的事情很陌生。需要非常简单和基本的答案。谢谢
在 ryuslash/git-auto-commit-mode
, you could consider the Directory Variable one 中列出的安装模式之外。
If you put a file with a special name
.dir-locals.el
in a directory, Emacs will read it when it visits any file in that directory or any of its subdirectories, and apply the settings it specifies to the file’s buffer.Emacs searches for `.dir-locals.el’ starting in the directory of the visited file, and moving up the directory tree.
因此,在 git 存储库的根目录下添加一个 .dir-locals.el
文件,然后放入其中(如果您使用的是 Emacs 24 或更新版本)
:
((nil . ((eval git-auto-commit-mode 1))))