由于Web服务器中的GIT,我目前正在尝试推进Symfony项目,该连接由ssh完成。
我首先在Web服务器中创建了一个GIT项目,如下所示:
Filezilla Configuration (link to image)
然后我首先在Symfony项目的位置本地执行以下命令:
git init
然后是与站点分支的连接:
git remote add live ssh://kasumi@ssh-kasumi.alwaysdata.net/var/git/symfony.git/
然后使用以下方法添加文件夹中的所有文件:
git add .
然后:
git commit -m "first deploiment"
并完成:
git push live master
然后出现以下错误:
fatal: '/var/git/symfony.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.
由于它要求我输入密码,因此它可以很好地连接到我的ssh,我确定密码正确。
但是它告诉我,在这个位置,似乎没有GIT项目存在。为什么然后在这个空间中很好地创建它呢?
也许我把树指明错了吗?
预先感谢您的回答。
编辑: 非常感谢您的回答,我终于成功了!我首先在github上创建了一个git depot,然后将其直接克隆到该站点的ssh(命令:git clone)中!
答案 0 :(得分:0)
它将首先检查您是否创建了远程存储库。因此,请检查存储库是否在Web服务器上创建