linux服务器git pull/push时避免频繁输入账号密码

Posted 明天OoO你好

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux服务器git pull/push时避免频繁输入账号密码相关的知识,希望对你有一定的参考价值。

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

[[email protected] ~]# git config --global credential.helper store

2、执行之后会在.gitconfig文件中多加红色字体项

[user]
        name = wang
        email = [email protected]
[credential]
        helper = store

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

[[email protected] test]# git pull
Username for ‘https://git.oschina.net‘: [email protected]
Password for ‘https://[email protected]@git.oschina.net‘:
[[email protected] ~]# cat .git-credentials
https://Username:[email protected]

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

 

 
 

以上是关于linux服务器git pull/push时避免频繁输入账号密码的主要内容,如果未能解决你的问题,请参考以下文章

linux服务器git pull/push时提示输入账号密码之免除设置

sh [git pull / push] pull或push命令#git #bash #linux

Linux和 Mac下git pull/push 免输入密码和账号

使用TortoiseGit时如何实现SSH免密码登录

git基础教程(42) 为何我clone的项目可以直接pull,push,而我自建项目却无法直接push

Git commit/pull/push的操作步骤