Can't push to new gitlab install

前端 未结 2 1272
渐次进展
渐次进展 2021-01-06 02:24

Good afternoon all,

Backed up several old git repos and am in the process of adding them to a knew gitlab install. Install looks like the guide here https://github.c

2条回答
  •  囚心锁ツ
    2021-01-06 02:57

    As the same user as you are attempting to connect with do a:

    ssh git@1.2.3.4 "ls /usr/local/project.git"
    

    and make sure you see the repo.

    Then add do a git clone:

    git clone git@1.2.3.4:/usr/local/project.git
    

    as the same user.

    My suspicion is that you don't have the correct repo location.

提交回复
热议问题