git
webhyx
gdufe
展开
-
git坑:remote: Invalid username or password. fatal: Authentication failed for ‘github地址‘
输入 git push origin main时,要求输入password,这时候输入的不是github的登陆密码!而是token。需要在github上 头像->Settings-> Developer settings->personal access tokens 新建一个token将这个token复制过去作为密码就好了...原创 2021-08-16 11:42:29 · 860 阅读 · 0 评论 -
git报错:443: Timed out,Connection was reset, errno 10054
git config --global --unset http.proxy 即可解决原创 2021-08-16 11:01:38 · 477 阅读 · 0 评论 -
git 错误:The requested URL returned error: 403
具体报错:从StackOverflow中找到了答案。1.在GitHub中获取一个新的tokenSettings -> Developer settings -> personal access tokens 创建一个新的token2. 在git bash中:git remote set-url https://@github.com/<git_url>然后就可以正常的push了!...原创 2021-07-28 16:37:23 · 334 阅读 · 0 评论 -
如何将项目上传至github
1. 在github创建一个repository2. 将HTTPS 复制下来3. 在项目文件夹右键 git bash here :第一次上传:设置username和email$ git config --global user.name “name”$ git config --global user.email “xxxx@email.com”关联github$ git clone email-address查看状态$ git status传到本地$ git add原创 2021-03-25 23:39:30 · 117 阅读 · 0 评论