初次使用git远程库报错

简介:

1、

error: The requested URL returned error: 403 Forbidden while accessing

https://github.com/xxx/testgit.git/info/refs

1
2
3
4
5
6
vim  /root/testgit/ .git /confi
[remote  "origin" ]
         #url = https://github.com/xxx/testgit.git
         url = https: //xxx @github.com /xxx/testgit .git
         fetch = +refs /heads/ *:refs /remotes/origin/ *
将原来URL前面加上姓名


2、

fatal: HTTP request failed

(gnome-ssh-askpass:2078): Gtk-WARNING **: cannot open display:


运行此命令:

1
unsetSSH_ASKPASS
1
2
3
再运行:
git push -u origin master
输入git帐号密码










本文转自 wangpengtai  51CTO博客,原文链接:http://blog.51cto.com/wangpengtai/1923653,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
算法 网络安全 开发工具
[Git]关联远程库的两种方法及配置
本文介绍了 git 的四种连接方式:ssh 连接、HTTPS 连接、SVN 连接和 SVN + ssh 连接,重点讲解了 HTTPS 和 ssh 连接方式的配置及注意事项。文章详细解释了 HTTPS 连接的身份验证过程、常见问题及解决方案,以及 ssh 连接的公钥和私钥的创建、配置方法。此外,还介绍了如何在同一台电脑上连接多个 gitee 账号的方法。
198 0
[Git]关联远程库的两种方法及配置
|
3月前
|
存储 开发工具 数据安全/隐私保护
git报错The project you were looking for could not be found 解决方式
git报错The project you were looking for could not be found 解决方式
624 1
|
4月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7
|
4月前
|
存储 Shell 开发工具
8-8|windows上Git报错
8-8|windows上Git报错
|
5月前
|
开发工具 git
【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错
【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错
|
5月前
|
存储 开发工具 数据库
什么是 Git 存储库?
【8月更文挑战第14天】
249 3
|
5月前
|
开发工具 Android开发 git
解决Idea报错出现Git is not installed
解决Idea报错出现Git is not installed
986 2
|
5月前
|
网络安全 开发工具 数据安全/隐私保护
Git——报错总结
Git——报错总结
60 1
|
6月前
|
网络安全 开发工具 git
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
1770 1
|
7月前
|
Shell 开发工具 git
git拉去代码报错"Failed to connect to 127.0.0.1 port 31181: Connection refused"
在克隆`https://example.git/`时遇到错误:"fatal: unable to access 'https://example.git/': Failed to connect to 127.0.0.1 port 31181: Connection refused"。原因是Windows上代理设置未正确关闭,影响了Git配置。解决方法是通过git bash运行命令检查并取消代理:`git config --global http.proxy`和`git config --global --unset http.proxy`。
178 1
 git拉去代码报错"Failed to connect to 127.0.0.1 port 31181: Connection refused"