我创建了一个目录,hello_git
. 在这个目录中,我创建了一个文件,hello_git.py
它会打印出“Hello git!” 信息。
然后我hello_git
在终端中创建了我的当前目录,并在该目录中依次输入了以下命令:
git init
git add hello_git.py
git commit -m 'first commit'
git remote add origin git@github.com:githubaccountname/hello_git.git
当我输入命令时,git push origin master
我被问到:
Enter passphrase for key '/home/myusername/.ssh/id_rsa':
当我输入我的密码(使用成功验证ssh -T git@github.com
)我得到这个:
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
我不知道这是否有帮助,但是:
git remote -v
返回:
origin git@github.com:githubaccountname/hello_git.git (fetch)
origin git@github.com:githubaccountname/hello_git.git (push)
我已经查看了类似帖子的答案,但似乎没有任何效果: