首页 > 代码库 > linux服务器git pull/push时避免频繁输入账号密码
linux服务器git pull/push时避免频繁输入账号密码
1、先cd到根目录,执行git config --global credential.helper store命令
[root@iZ25mi9h7ayZ ~]# git config --global credential.helper store
2、执行之后会在.gitconfig文件中多加红色字体项
[user] name = wang email = xxxx@xxxx.com[credential] helper = store
3、之后cd到项目目录,执行git pull命令,会提示输入账号密码。输完这一次以后就不再需要,并且会在根目录生成一个.git-credentials文件
[root@iZ25mi9h7ayZ test]# git pullUsername for ‘https://git.oschina.net‘: xxxx@xxxx.comPassword for ‘https://xxxx@xxxx.com@git.oschina.net‘:
[root@iZ25mi9h7ayZ ~]# cat .git-credentialshttps://Username:Password@git.selfgit.net
4、之后pull/push代码都不再需要输入账号密码了~
linux服务器git pull/push时避免频繁输入账号密码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。