git 每次pull都需要输入用户和密码
cd ~
vim .git-credentials
https://{username}:{password}@code.5288z.com
git config --global credential.helper store
执行完后
/home/chinaestone/.gitconfig 会新增一项
helper = store
这是再执行git push/pull的时候就不会在要求你输入密码了
cd ~
vim .git-credentials
https://{username}:{password}@code.5288z.com
git config --global credential.helper store
执行完后
/home/chinaestone/.gitconfig 会新增一项
helper = store
这是再执行git push/pull的时候就不会在要求你输入密码了