Linux下配置Git免密码

本篇文章将会介绍如何在Linux下配置使Git在push/pull时免密码

操作步聚:

  1. 进入当前用户目录下;

  2. 创建并打开.git-credentials

  3. 按照以下格式输入内容:

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

    其中username,password,github.com 都替换成你自己的内容

  4. 保存退出后执行

    1
    git config --global credential.helper store

    执行完后

      /home/用户名/.gitconfig 会新增一项

      helper = store

  5. 这时再执行git push/pull的时候就不会在要求你输入密码了。