赞
踩
一、问题描述:
每次 git push 的时候都要提示输入用户名和密码;
二、解决方式:
提示输入用户名和密码是 你登录 git 网站的登录名和用户;
在【家目录】下创建 .git-credentials
文件,并填充以下内容:
https://username:password@github.com
(username 是登录名,password 是密码,github.com 是代码仓库的地址)
在终端执行git config --global credential.helper store
即可
三、结论:
在使用git clone
的地址是 ssh 时,每次 push 的时候只需要输入【验证密码】,该密码是在生成 ssh key 的时候输入的;
在使用git clone
的地址是 https 时,每次 push 的时候需要用户名和密码;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。