linux保存github的账号和密码

用 shell 命令来执行 git 操作的,所以就决定在 –global 配置一下用户名和密码,不用每次手动输入了。

1、首先连接到你的 Linux 服务器,在根目录(~/)下,使用 touch 命令创建文件 .git-credentials :

touch .git-credentials

2、然后用 vim 命令编辑此文件:

vim .git-credentials

按 i 键进入编辑模式,输入:

http(s)://{你的用户名}:{你的密码}@你的服务器地址{github.com}

注意:① 服务器是http的选择http,是https的选择https 。② 去掉 {}

3、在终端下执行如下命令:

git config --global credential.helper store
git config --global user.email "you@example.com"
git config --global user.name "Your Name"

4. 可以看到 ~/.gitconfig 文件会多一项:

cat .gitconfig
[credential]
        helper = store
[user]
        email = you@example.com
        name = Your Name

说明已经配置好了,再次 push 或 pull 试试看吧,不需要输入密码了。

发表回复

京ICP备15027918号-1