我的第一个提交是使用
添加README文件git commit -m 'first commit'
我现在有以下(下面)并且在尝试向上或向下导航时发出系统蜂鸣声。不知道如何摆脱它或为什么它出现.....
任何非常感谢的帮助
first commit
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
#
# new file: README
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# css/
# img/
# index.html
~
~
~
~
-- INSERT --
答案 0 :(得分:3)
git使用vi作为默认文本编辑器。编辑提交消息,然后按Esc键,然后键入:wq
以保存并退出。
接下来,如果您不熟悉vim,则应更改文本编辑器。在命令提示符下,键入git config --global core.editor editor
,将editor
替换为您要使用的编辑器(例如gedit,notepad等)。您可以找到有关基本git配置here的更多信息。
答案 1 :(得分:2)
我认为git打开了VIM来编辑提交消息。您可以通过键入ESC
(进入命令模式)然后键入:wq
(保存并退出)来退出。
这可能是因为您的$EDITOR
环境值设置为vim
。您可以通过将export EDITOR={your favorite editor}
添加到~/.bashrc
或~/.profile
文件来更改它。