[user]
name = coolcao
email = [email protected]
[core]
editor = "c:/program files (x86)/vim/vim74/gvim.exe"
可是在使用的時候卻提示如下錯誤:
error: cannot spawn gvim: no such file or directory
error: unable to start editor 'gvim'
please supply the message using either -m or -f option.
上網查得知,原來git config貌似移出了一層引號,因此加上便可,如下即可:
[user]
name = coolcao
email = [email protected]
[core]
editor = "\"c:/program files (x86)/vim/vim74/gvim.exe\""
當然,如果你的終端配置了vim的環境變數,完全可以 editor=vim ,直接在終端裡面呼叫vim即可,只是windows的終端字型太難看了,沒法更改(或者我不會,也不願改了),不如使用圖形化的gvim看起來舒服。
windows下如何配置Git
主要參考 使用github 廖雪峰的官方 安裝完成後,在開始選單裡找到 git git bash 蹦出乙個類似命令列視窗的東西,就說明git安裝成功!git config global user.name your name git config global user.email email ex...
windows下配置git多賬戶
無論使用乙個git伺服器,還是多個,只要涉及到多個賬戶,都可以使用這個方法來解決。方法的本質是使用ssh生產金鑰檔案,然後將對應的公鑰內容放到git伺服器上,通過金鑰檔案進行驗證。網上搜到的方法其實都是可以用的,只是有幾個坑,不然你搜了一圈會說,這tm根本不能用,windows 來的 ssh 資料夾...
Windows下多個Git賬號配置
在git bash執行ssh keygen t rsa c username email.com 命令生成username的ssh key 當前使用者下的.ssh目錄下會生成id rsa 私鑰檔案 id rda.pub 公鑰檔案 將id rda.pub 公鑰檔案 的內容新增到username的git...