解决服务器git pull/push每次输入用户名和密码

1. 在~/目录下:注意创建文件的路径

vim创建文件并编辑:

vim ~/.git-credentials

文件内输入:

如果是github:

https://{username}:{password}@github.com

如果是coding:

https://{username}:{password}@git.coding.net

 *:注意去掉{}

注意:不做这一步也可以,直接跳转到第二步,执行git pull输入一次用户名和密码之后后面就不需要重复输入了。

2. 在终端下执行:

git config --global credential.helper store

3. 查看~/.gitconfig文件:

cat ~/.gitconfig

会多了一项:

[credential]
        helper = store

现在使用git pull 和git push 就不用再输入用户名和密码了,亲测可用,祝使用愉快!?

你可能感兴趣的:(linux)