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
Another faster way of downloading a GitHub project would be to use the clone functionality with the --depth argument as:
--depth
git clone --depth=1 git@github.com:organization/your-repo.git
to perform a shallow clone.