在windows上使用git來push到github伺服器的時候,每次都需要填寫使用者名稱/郵箱、密碼,很麻煩。最近用hexo寫部落格,需要頻繁地進行部落格配置和預覽,而每次預覽執行hexo deploy
都需要輸入使用者名稱、密碼驗證,不勝其煩,今天下決心解決。
儘管github提供了ssh
方式進行本地和服務端的鏈結,可是按照**說明設定好之後,這個問題仍然得不到解決。嘗試了好幾次,最終用下面這個方法解決了。
首先新增環境變數。
在使用者資料夾如c:\users\zhangsan
下新建乙個名為_netrc
的檔案。
123
machine github.com儲存。login zhangsan
password 123456
git push 避免重複輸入使用者名稱和密碼
touch git credentials vim git credentials 新增git config 內容 進入git bash終端,輸入如下命令 git config global credential.helper store 執行完後檢視 home 目錄下的.gitconfig檔案,會...
解決git push時每次需要輸入使用者名稱和密碼方法
在git push時每次都要輸入使用者名稱和密碼是一件很痛苦的事,其實解決方法很簡單步驟如下 在專案資料夾 包含隱藏資料夾.git資料夾的 內右鍵 git bash here 在git bash互動環境輸入命令 git config credential.helper store這裡沒有 globa...
git push 不用輸入使用者名稱和密碼
在終端中輸入命令 git config credential.helper store開啟.git資料夾的.config檔案,回發現多了兩行 credential helper store git push 到遠端倉庫,輸入使用者名稱和密碼,注意要輸入正確的 再次執行git push 就不用輸入使用...