1. 在~/目錄下, touch建立檔案.Git-credentials
touch .git-credentials vim .git-credentials
點選「i」進入編輯檔案模式
https://{username}:{password}@github.com 例如 https://zhang3:12345@github.com
點選「ESC」 然後輸入「:wq」退出編輯並儲存
2. 在終端機下執行
git config --global credential.helper store
3. 可以看到~/ .gitconfig文件,會多了一項:
vi .gitconfig 進入
可以看到
[credential]
helper = store