解决问题:git pull每次输入用户名密码

1、先cd到根目录,执行命令:

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

2、执行之后会发现 在.gitconfig文件中多加红色字体项(此步只是查看,无操作)

[user]
        name = 天明
        email = [email protected]
[credential]
        helper = store

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

[root@iZ25mi9h7ayZ test]# git pull
Username for 'https://git.oschina.net': [email protected]
Password for 'https://[email protected]@git.oschina.net':

(只查看,无操作)

[root@iZ25mi9h7ayZ ~]# cat .git-credentials
https://Username:[email protected]

4、之后pull/push代码都不再需要输入账号密码了~

你可能感兴趣的:(解决问题:git pull每次输入用户名密码)