在项目根目录下找到 .git/config 文件进行修改
这样 *** 作开发当前项目,git *** 作不会提示再次输入账号密码,当然还可以用其他方法
git config查看配置
一、通过文件方式
1.在~/下, touch创建文件 .git-credentials, 用vim编辑此文件,输入内容格式:
touch .git-credentials
vim .git-credentials
在里面按“i”然后输入: https://{username}:{password}@github.com
比如 https://account:password@github.com
git config --global credential.helper store
[credential]
helper = store
4.OK
二、通过缓存方式
要求:git版本需要>=1.7.10
git config --global credential.helper cache
git config --global credential.helper 'cache --timeout=3600'
这个意思应该是本地不允许root帐号登录或者是密码不对,如果是root帐号,初始数据库的root帐号是不需要密码的,进入之后修改下root密码,同时应用中不要使用root帐号,而应该新建其他帐号来供应用使用,这样可以避免很多安全问题。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)