在命令行输入命令:

$ git config --global credential.helper store

这一步会在用户目录下的.gitconfig文件最后添加:

[credential]
     helper = store

现在push你的代码 (git push), 这时会让你输入用户名密码, 这一步输入的用户名密码会被记住, 下次再push代码时就不用输入用户名密码啦!

这一步会在用户目录下生成文件.git-credential记录用户名密码的信息.

 git config --global 命令实际上在操作用户目录下的.gitconfig文件, 我们cat一下此文件(cat .gitconfig), 其内容如下:

[user]
 name = alice
 email = alice@aol.com
[push]
 default = simple
[credential]
 helper = store

$ git config --global user.email "alice@aol.com" 操作的就是上面的email

$ git config --global push.default matching 操作的就是上面的push段中的default字段

$ git config --global credential.helper store 操作的就是上面最后一行的值

相关文章:

  • 2022-12-23
  • 2022-02-06
  • 2022-02-09
  • 2021-06-05
  • 2022-12-23
  • 2021-05-21
  • 2021-12-17
  • 2022-12-23
猜你喜欢
  • 2022-02-08
  • 2021-10-14
  • 2021-12-25
  • 2021-11-28
  • 2022-12-23
  • 2021-12-20
  • 2022-12-23
相关资源
相似解决方案