Bootstrap

http拉取git仓库,每次都要输入帐号密码,Ubuntu上记住帐号密码

1,用文本形式,打开.git-credentials文件

     sudo gedit .git-credentials

2,在里面输入

       http://username:[email protected]

      其中,http://username:password@git服务器域名

3,刷新

git config --global credential.helper store

4,这时

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

  helper = store

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

;