赞
踩
一、配置成全局永久保存
1、配置用户名:username
git config --global user.name “username”
2、配置邮箱:user@email
git config --global user.email “user@email”
3、配置密码(当本地pull或push时提示权限无效的时候,就可以用本命令了)(亲自测试)
git config --global credential.helper store
该命令会记住密码,执行一次 git pull 或 git push 等需要输入密码的命令,输入一次密码。
4、查看配置
git config --list
5、清除密码
git config --global --unset credential.helper
二、临时保存
1、默认记住15分钟
git config –global credential.helper cache
2、自定义时间
git config credential.helper ‘cache –timeout=3600’
转自:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。