Git 使用 Vim 来提交消息
我刚刚开始使用 git,当我 git commit 时,它使用 VIM 文本编辑器来更改写入提交消息。这是正常的吗?
在我读过的教程和例子中,没有任何地方使用过VIM。
是因为我使用的是 Windows 7 64 位 版本吗?
I have just started using git and when I git commit it uses the VIM text editor to change write the commit message. Is this normal?
In the tutorials and examples I have read, nowhere has VIM been used.
Is it because I'm using windows 7 64 bit edition?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您没有通过
$ 设置编辑器GIT_EDITOR
环境变量、core.editor
配置变量、$VISUAL
或$EDITOR
环境变量,它将使用vi
。If you did not set an editor via the
$GIT_EDITOR
environment variable,core.editor
configuration variable, the$VISUAL
or$EDITOR
environment variables, it will usevi
.如何设置编辑器可以在 Windows 上使用 Git 吗?
How can I set up an editor to work with Git on Windows?
这是正常现象,与您使用的 Windows 风格无关。
It is normal and it has nothing to do with the flavour of windows that you are using.