Git 免用户名密码提交代码

一、用文件保存用户名密码的方式

  1. 执行一下命令
git config --global credential.helper store

执行完成后会在用户家目录下生成 .gitconfig

  1. push 代码
    git push 时会让你输入用户名和密码, 这一步输入的用户名密码会被记住, 下次再push代码时就不用输入用户名密码。这一步会在用户家目录下生成文件 .git-credential 记录用户名密码的信息。
# .git-credential 内容格式如下
https:{username}:{password}@github.com

二、添加公钥并且在克隆项目的时候不用 https 方式

git clone [email protected]:xxx/xxx.git

你可能感兴趣的:(Git 免用户名密码提交代码)