linux服务器git pull/push时免输入用户名密码设置

1、先cd到根目录,执行git config --global credential.helper store命令

[root@master ~]# git config --global credential.helper store

2、执行之后会在.gitconfig文件中多加一下内容

[credential]
        helper = store

3、之后cd到项目目录,执行git pull命令,会提示输入账号密码。输完这一次以后就不再需要,并且会在根目录生成一个.git-credentials文件

[root@master ~]# cat .git-credentials
http://yonggehaoshuai:[email protected]

 

你可能感兴趣的:(linux)