git pull 代码保存用户名密码
git config --global credential.helper store
## ~/.gitconfig 文件中会多一行
[credential]
helper = store
# 再次执行git pull再次输入用户名和密码
# ~/.git-credentials 会多一行内容
http://{username}:{password}@{githubAddress}
git config --global credential.helper store
## ~/.gitconfig 文件中会多一行
[credential]
helper = store
# 再次执行git pull再次输入用户名和密码
# ~/.git-credentials 会多一行内容
http://{username}:{password}@{githubAddress}