首页 > 其他 > 详细

git仓库添加配置

时间:2020-08-24 15:29:55      阅读:67      评论:0      收藏:0      [点我收藏+]
git config --global user.email "你的git的注册邮箱"
git config --global user.user"你的git用户名"



1、设置记住密码(默认15分钟):
git config --global credential.helper cache

2、如果想自己设置时间,可以这样做:
git config credential.helper ‘cache --timeout=3600‘
这样就设置一个小时之后失效

3、长期存储密码:
git config --global credential.helper store

4、增加远程地址的时候带上密码也是可以的。(推荐)
http://yourname:password@git.oschina.net/name/project.git

git仓库添加配置

原文:https://www.cnblogs.com/MJmajong/p/13553805.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!