linux下每次git clone不需输入账号密码的方法

Posted 笑侃码农

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下每次git clone不需输入账号密码的方法相关的知识,希望对你有一定的参考价值。

在~/下, touch创建文件 .git-credentials, 用vim编辑此文件,输入内容格式:

ame@zhenyun ~ $touch .git-credentials

ame@zhenyun ~ $vim .git-credentials

在里面按“i”然后输入:https://{username}:{password}@github.com

比如 https://aoeddklj:[email protected]

2. 在终端下执行

ame@zhenyun ~ $git config --global credential.helper store

3. 可以看到~/.gitconfig文件,会多了一项:

[credential]

helper = store

这个时候输入命令git clone http://[email protected] 时不需要输入密码,即可完成代码的git

以上是关于linux下每次git clone不需输入账号密码的方法的主要内容,如果未能解决你的问题,请参考以下文章

linux 保存git的账号密码

用ssh方式git clone,能不每次都输密码吗?

Linux下解决每次git pull/git push都需输入密码的问题

git clone时,报403错误,完美解决方案

windows上解决git每次重复输入账号密码

解决git命令行每次都要输入账号密码