linux下面能夠直接建立.git-credential文件,命令以下:linux
建立文件,進入文件,輸入內容:git
cd ~ touch .git-credentials vim .git-credentials https://{username}:{password}@github.com
在終端下輸入:github
git config --global credential.helper store
打開~/.gitconfig文件,會發現多了一項:vim
[credential] helper = store
注:設置好後第一次執行須要輸入,之後就不須要了bash