标签: linux git github
我在github中分叉一个项目。我git clone时的项目大小约为400毫克 来自download zip的{{1}}的大小约为40毫克 我如何才能获得项目的最后版本/快照并继续提交,或删除除远程(github)的最后一次提交之外的每个文件的所有提交?
github
git clone
download zip
答案 0 :(得分:1)
git clone --depth 1 --branch=master git://servername/reponame mynewrepo将为您提供没有提交历史记录的项目。
git clone --depth 1 --branch=master git://servername/reponame mynewrepo