分享下 :去掉linux 下git push时…

在~/下, 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

这个时候你就不需要输入密码了

你可能感兴趣的:(分享下 :去掉linux 下git push时…)