本篇文章将会介绍如何在Linux下配置使Git在push/pull时免密码
操作步聚:
进入当前用户目录下;
创建并打开
.git-credentials
按照以下格式输入内容:
1
https://{username}:{password}@github.com
其中username,password,github.com 都替换成你自己的内容
保存退出后执行
1
git config --global credential.helper store
执行完后
/home/用户名/.gitconfig
会新增一项helper = store
这时再执行git push/pull的时候就不会在要求你输入密码了。