标签:
整个文件夹提交 git add /var/www/git/
长期保存密码: git config --global credential.helper store //执行这个命令后,第一次提交需要输入用户名密码,以后就不需要了
设置记住密码:git config --global credential.helper cache //默认15分钟
设置记住密码时间:git config --global credential.helper ‘cache --timeout=3600‘ //设置一个小时内有效
标签:
原文地址:http://www.cnblogs.com/xiaozong/p/5394654.html