我有一堆脚本要上传到我在线创建的存储库中。
我做了以下事情:
$git add
$git commit
$git remote add origin git@github.com:<USERNAME>/My-scripts.git **[i copied this from the website]**
$git push
$ git push origin master
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
我检查过以确保我可以访问SSH
$ssh -T git@github.com
Hi <name>! you've successfully authenticated, . . . .
我有几个电子邮件地址设置了我的一个github帐户,而我使用的是我的主要地址。
以下是我的.gihub / config
$ cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = git@github.com:<userrname>/My-scripts.git
fetch = +refs/heads/*:refs/remotes/origin/*
有什么建议吗?
答案 0 :(得分:0)
你确定你在GitHub上创建了回购?如果你加载
https://github.com/<username>/My-scripts.git
在您的浏览器中,您看到那里的回购吗?确保完全按照<username>/my-scripts.git
中的显示键入.git/config
。如果你看到404页面,你的repo还不存在,你需要先在GitHub上创建它。可能是一个小的拼写错误。