Fastest way to download a GitHub project

前端 未结 8 1388
醉话见心
醉话见心 2020-12-22 17:14

I need to download the source code of the project Spring data graph example into my box. It has public read-only access. Is there is an extremely fast way of downloading thi

8条回答
  •  太阳男子
    2020-12-22 17:30

    Another faster way of downloading a GitHub project would be to use the clone functionality with the --depth argument as:

    git clone --depth=1 git@github.com:organization/your-repo.git
    

    to perform a shallow clone.

提交回复
热议问题