在我的远程服务器中,我有一个目录/var/www/html/Qiyun02-server
,在其中我使用:
git init --bare Qiyun02-server
创建了一个名为Qiyun02-server
的仓库。
在我本地Mac的Qiyun02项目中,我使用
git remote add origin 103.15.22.21:/var/www/html/Qiyun02-server:Qiyun02-server
添加了远程原点。
然后:
git add -A
git commit -m 'my first commit for remote origin'
然后我推送到远程服务器:
git push --set-upstream origin master
但我得到了以下错误:
MacBook-Pro:Qiyun02 ldl$ sudo git push --set-upstream origin master
Password:
root@103.15.22.21's password:
fatal: '/var/www/html/Qiyun02-server:Qiyun02-server' 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.
答案 0 :(得分:0)
您未提供正确的网址路径。
这是错误:git remote add origin 103.15.22.21:/var/www/html/Qiyun02-server:Qiyun02-server
不要使用你上面做过的网址。
按照以下方式使用HTTPS添加网址即可。
<强> HTTP / S:强>
git remote add origin <url>
<强> example <url> : https://github.com/xxx/xxx/
强>
<强> SSH:强>
git remote add origin git@github.com:username/new_repo
我建议您按照beginner tutorial进行操作,如何设置git repo。