1 创建 Git 存储用户名和密码
在%HOME%目录中
touch .git-credentials
vim .git-credentials
https://{用户名}:{密码}@gitee.com/fedcloud/aaaa.git
2添加 Git Config内容
git config --globalcredential.helper store
执行完后查看%HOME%目录下的.gitconfig文件,会多了一项。
[credential]
helper = store
注意:
如果不能提交代码到git服务器,需要将帐号绑定到git工具上。若不绑定,当你执行git commit 是报如下错误。
git config --globaluser.email"you@example.com"
git config --globaluser.name"Your Name"
需要执行 git config --global 命令,全局配置用户的姓名和邮箱,就可以提交git 代码了。
git config --global user.email {用户邮箱}
git config --globaluser.name {用户账号}
网友评论