git commit 彈出編輯器後報錯: Aborting commit due to empty commit message.
使用終端提交程式碼 "git commit" 能正常彈出 設定的編輯器,但是直接被空訊息提交上來導致無效。
使用了外掛 # git-extras 簡化命令
gc == git commit
解決方法: $ git config --global core.editor "subl -w -f"
"subl -f" 表示設定預設啟動的編輯器,-w表示等待編輯器提交之後, -f 為一個引數 讓它不要 fork。 mac 的時候使用 -w -f 其他好像只用 -w即可。
如果像設定其他編輯器直接將 subl 換成 編輯器在 .bin/ 裡面的縮寫即可。 如vim、nano 等等 。
或者直接 git commit "提交內容"。
參考:https://stackoverflow.com/questions/9725160/aborting-commit-due-to-empty-commit-message
相關文章
- git commit後如何取消commitGitMIT
- windows下git commit使用gvim編輯器WindowsGitMIT
- Git commit 之後,想撤銷 commitGitMIT
- eclipse svn commit 報錯 Commit blocked by pre-commit hookEclipseMITBloCHook
- svn commit 提示Aborting commit 失敗問題解決辦法MIT
- git commit --amendGitMIT
- 關於Git commitGitMIT
- Git拆分commit提交GitMIT
- git commit 規範GitMIT
- Git commit規範GitMIT
- git 修改 commit 資訊GitMIT
- git 刪除錯誤提交的commitGit除錯MIT
- Git刪除錯誤提交的commitGit除錯MIT
- git commit 錯誤的程式碼之後的撤銷GitMIT
- 撤銷 git commit --amendGitMIT
- Git Commit 標準化GitMIT
- git修改commit註釋GitMIT
- Git修改commit提交資訊GitMIT
- Git插入新的commitGitMIT
- Git刪除指定commitGitMIT
- 撤銷 git commit –amendGitMIT
- 編寫git commit資訊的最佳實踐GitMIT
- on commit delete rows and on commit preserve rowsMITdelete
- 132 SVN提交報錯"Commit blocked by pre-commit hook"的解決辦法MITBloCHook
- CommitMIT
- Git commit message 規範GitMIT
- Git檢視指定commit資訊GitMIT
- [Git CLion] 規範Commit格式GitMIT
- git commit提交空內容GitMIT
- 「Git」合併多個 CommitGitMIT
- git hooks之——pre-commitGitHookMIT
- Git 合併指定的commitGitMIT
- 【譯】編寫git commit資訊的最佳實踐GitMIT
- 【git】Git commit時提示錯誤時 解決辦法GitMIT
- cassandra啟動報錯:Exiting due to error while processing commit log during initialization.ErrorWhileMIT
- git commit 的正確姿勢GitMIT
- Go:git gofmt pre-commit hookGoGitMITHook
- 專案規範-git commit 配置GitMIT