无法将原始信息推送到git上的主服务器-找不到存储库

时间:2018-07-09 15:52:10

标签: git github commit

我正在通过Windows 7机器上的git / git hub教程(这是新的)进行工作。我试图将起源推向高潮。我尝试如下:

C:\Users\Home Office\Desktop\Projects\myproject>git push -u origin mas
fatal: HttpRequestException encountered.
   An error occurred while sending the request.
Username for 'https://github.com': zonk3
Password for 'https://zonk3@github.com':
remote: Repository not found.
fatal: repository 'https://github.com/zonk3/myproject.git/' not found

C:\Users\Home Office\Desktop\Projects\myproject>git push origin master
fatal: HttpRequestException encountered.
   An error occurred while sending the request.
Username for 'https://github.com': zonk3
Password for 'https://zonk3@github.com':
remote: Repository not found.
fatal: repository 'https://github.com/zonk3/myproject.git/' not found

它提示我通过gui登录github,然后在命令行上,然后说找不到存储库。但是,当我寻找存储库时,我可以看到它。

C:\Users\Home Office\Desktop\Projects\myproject>git remote -v
origin  https://github.com/zonk3/myproject.git (fetch)
origin  https://github.com/zonk3/myproject.git (push)

关于我在做什么错的任何想法吗?

2 个答案:

答案 0 :(得分:1)

好的,谢谢您的帮助。我想我解决了这个问题,乔希走上了正确的道路。我使用GitHub桌面(而不是网站)创建了回购协议,因此回购协议似乎不存在。当我通过网站创建新的仓库时,该项目运行良好。可悲的是,我想我无法正确遵循的方向是“开放GitHub”。谢谢大家。

答案 1 :(得分:0)

在给定的示例上,远程存储库添加命令似乎不太正确。

正确的添加语法为

git remote add origin https://github.com/zonk3/myproject.git

但是首先请确保使用以下命令在工作文件夹上启动git repo

git init

希望这会有所帮助!