【20】Git 使用中顯示“Another git process seems to be running in this repository...”問題解決...

weixin_33935777發表於2017-11-29

問題描述

在使用git commit “xxx”的時候,修改記錄檔案時,按錯了按鍵導致下次commit時報錯。

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.

大概的意思就是還有一個程式正在執行,請保證所有程式結束後進行此操作。如果不行,請嘗試手動刪除檔案後再繼續。

解決辦法

進入到工作目錄.git下,如果你沒有找到這個目錄,可能是沒有開啟檢視隱藏檔案的選項,你需要在資料夾選項中進行相關設定。刪除index.lock檔案,然後開啟git-bash,重新進行commit就可以了。


3956112-5b359054b7feebd8.png
2017-11-29_223108.png

相關文章