pip install from a gitosis

前端 未结 2 398
无人共我
无人共我 2021-01-02 18:20

I have working gitosis repo. If I do

git clone git@server:repo.git

it clones the repo correctly. However, it does not work if I do:

2条回答
  •  时光取名叫无心
    2021-01-02 19:11

    To install, you should only have to run:

    pip install git+git://host/path_to_repo/repo.git
    

    So for your example:

    pip install git+git://server/path_to_repo/repo.git
    

提交回复
热议问题