Is it possible to have Cargo fetch dependencies from a private remote git?

后端 未结 2 732
我寻月下人不归
我寻月下人不归 2021-02-07 08:09

I have an account on an ssh-friendly lab machine where I store a lot of private projects so I can access them from multiple computers (and it allows me to only use my few privat

2条回答
  •  庸人自扰
    2021-02-07 08:35

    Use a full SSH path rather than Git’s shorthand:

    git = "ssh://landmachine/bar/foo"
    

提交回复
热议问题