Small git-related cleanup in readme
mattfelsen opened this issue · 1 comments
mattfelsen commented
A couple small things/suggestions in the readme:
- use https instead of ssh for clone links (I got permission denied errors with ssh)
-
--recursive
does asubmodule --init
when cloning, so the latter line is redundant/unncessary - do a shallow clone with
--depth 1
, which saves about 250MB of space (~800 vs 550MB) - clone the specific branch/tag directly instead using
-b v0.9.1
For reference, this line address all the above issues:
git clone -b v0.9.1 --depth 1 --recursive https://github.com/cinder/Cinder.git
benjaminbojko commented
Fixed 70f895e