git 免密码提交代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 免密码提交代码相关的知识,希望对你有一定的参考价值。
Linux或者Mac下方法: 创建文件,进入文件,输入内容: cd ~ touch .git-credentials vim .git-credentials https://{username}:{password}@github.com 在终端下输入: git config --global credential.helper store 打开~/.gitconfig文件,会发现多了一项: [credential] helper = store
Windows方法: 方法同上面,只是第一步创建git-credentials有点不同。在%HOME%目录中,一般为C:\users\Administrator,也可以是你自己创建的系统用户名目录,反正都在C:\users\中。文件名为.git-credentials,由于在Window中不允许直接创建以"."开头的文件,所以需要借助git bash进行,打开git bash客户端,进行%HOME%目录,然后用touch创建文件 .git-credentials, 然后后面的操作同上面。
以上是关于git 免密码提交代码的主要内容,如果未能解决你的问题,请参考以下文章