赞
踩
1、先cd到根目录,执行git config --global credential.helper store命令
git config --global credential.helper store
2、执行之后会在.gitconfig文件中多加红色字体项
[user]
name = 名称
email =xxxx@xxxx.com
[credential]
helper = store
3、之后cd到项目目录,执行git pull命令,会提示输入账号密码。输完这一次以后就不再需要,并且会在根目录生成一个.git-credentials文件
[root@]# git pull
Username for 'https://xxx': xxxx@xxxx.com
Password for 'https://xxxx@xxxx.com@git.xxx.net':
[root@]# cat .git-credentials
https://Username:Password@git.xxx.net
4、之后pull/push代码都不再需要输入账号密码了~
不想保存账号密码了,删掉也可以
已保存过密码,发现不好修改:可以这样设置
git remote set-url origin https://zengyihong:aBc1054995637@gitlab.com/www.xxx/com.git
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。