首页 > 代码库 > Git linux下保存密码方法

Git linux下保存密码方法

vi ~/.git-credentials

输入以下内容:

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

 

执行命令

git config --global credential.helper store

 

vi ~/.gitconfig,末尾添加了一项:

[credential]

helper = store

 

即可免密使用git命令。

Git linux下保存密码方法