Я пытаюсь развернуть ветку моего репозитория git на моем сервере LAMP.Я инициализировал репозиторий Git на моем сервере:
$ ssh user@ip.address
...
user@server.domain [test]# git init
Reinitialized existing Git repository in /home/user/public_html/.../test/.git/
В локальном репо я добавил удаленный путь и попытался протолкнуть ветку:
git remote add test ssh://user@ip.address/public_html/.../test
git push test myBranch
Вот что яget:
fatal: '/public_html/.../test' 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.
Может кто-нибудь помочь мне или есть лучший способ сделать это?