我有一个Debian 7(Wheezy)(64位版本)VPS启动并运行,我想在其上安装git并将其用作远程存储库。 为此,我遵循了这个article,我认为我得到了应有的一切。
现在我有一个项目在我的本地计算机上有一些文件,所以我想将它们推入存储库,我尝试了以下命令:
git init && git remote add origin git@xx.xx.xx.xx:my-project.git
现在,当我尝试使用以下命令从本地计算机中推送内容时:
git push origin master
然后输入git用户的密码我收到以下错误:
fatal: 'my-project.git' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.