2014-03-05 47 views
1

我想或者瀏覽上下時,我的第一次提交其添加使用第一git的承諾,現在系統發出蜂鳴聲

git commit -m 'first commit' 

我現在有以下(下同)README文件和剛剛獲得系統發出蜂鳴聲。不知道如何擺脫它或它爲什麼出現.....

任何幫助非常感謝

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 -- 

回答

3

git使用vi作爲其默認的文本編輯器。編輯提交信息,然後按Esc鍵,然後輸入:wq保存並退出。

接下來,如果你不熟悉vim,你應該改變你的文本編輯器。在命令提示符處輸入git config --global core.editor editor,用任何希望使用的編輯器替換editor(例如gedit,notepad等)。您可以瞭解更多關於基本git配置的信息here

+2

您可能還希望'git commit --amend'修復提交消息,如果它最終包含垃圾。 – tripleee

2

我想混帳打開VIM編輯提交信息。您可以通過輸入ESC(要進入命令模式),然後輸入:wq(要保存並退出)退出。

這可能是因爲您的$EDITOR環境值設置爲vim。您可以通過將export EDITOR={your favorite editor}添加到~/.bashrc~/.profile文件來更改它。