每次拉取和提交代码的时候,都需要输入用户名和密码,很麻烦。
git config --global credential.helper store
找到git的配置文件 .gitconfig ,添加一行代码 (全盘搜 .gitconfig 才能找到这个文件)
[credential]
helper = store
原理:这个命令是在本地生成一个账号密码文件,这样就不用每次都输入了
这个方法对于windows,linux都是通用的!!!
如果想查看账号密码
cat ~/.git-credentials
查看本地所有全局配置
git config --global -l