Linux下执行 git push, pull 等操作免除输入账号、密码

操作步骤:

  1. 进入到根目录: cd ~
  2. 创建文件 .git-credentials: touch .git-credentials
  3. 编辑 .git-credentials : vim .git-credentials
  4. 输入如下内容:
https://githup账号:密码@github.com
// 例如: https://tianzez:[email protected]
  1. 保存退出vim编辑, 执行: git config --global credential.helper store
  2. 查看 ~/.gitconfig 文件, 里面多出如下内容:
[credential]
	helper = store
  1. 执行一下 git push 等需要输入账号密码的操作, 可能第一次还需要输入账号密码, 但这次输入完后, 以后再进行这些操作就不用输入账号和密码了.

你可能感兴趣的:(零碎小知识)