解决ubuntu 每次提交git 都需要密码的方法

解决ubuntu 每次提交git 都需要密码的方法

1.进入当前用户的目录下,比如小编的为clj目录

cd /home/clj

2.编辑git-credentials ,可能没有这个文件,直接编辑保持就可以。编辑内容格式如下

https://{username}:{passwd}@{仓库地址}

3.保存之后,执行以下命令

git config --global credential.helper store

执行完之后会在/home/用户名/.gitconfig 会新增一项

helper = store

至此解决了ubuntu每次提交git都需要密码的问题


 

你可能感兴趣的:(Git,Linux,Lumen,ubuntu,git)