有个开源项目odoo,目前已经有10多个分支(版本),整个库clone下来非常大。我知道并且试着可以clone -b 一个分支下来,但我发现这个分支也非常大;我们知道在网页上download时选好分支,一般就是该分支最新的版本,没有历史版本。请问谁知道使用git clone 哪些选项可以做到?谢谢!
ringa_lee
git init一个本地仓设置upstream的remote地址git fetch origin/branch1 --depth=1大概就是这样的
git init一个本地仓
设置upstream的remote地址
git fetch origin/branch1 --depth=1
大概就是这样的