我是用 shell 命令來執行 git 操作的,所以就決定在 --global 配置一下使用者名稱和密碼,不用每次手動輸入了。
設定步驟
1. 首先需要 ftp 連線到你的 Linux 伺服器,在根目錄(~/)下,使用 touch 命令建立檔案 .git-credentials :
touch .git-credentials
2. 然後用 vim 命令編輯此檔案:
vim .git-credentials
按 i 鍵進入編輯模式,輸入:
http(s)://{你的使用者名稱}:{你的密碼}@你的伺服器地址
注意:① 我的伺服器是 http 的,所有這裡不加 s 。② 去掉 {}
3. 在終端下執行如下命令:
git config --global credential.helper store
4. 可以看到 ~/.gitconfig 檔案會多一項:
cat .gitconfig
[credential]
helper = store
說明已經配置好了,再次 push 或 pull 試試看吧,不需要輸入密碼了。