Git仅拉取指定版本的代码

以linux源码为例, clone完整代码太大, 就指定depth 1
想要指定拉取的版本, 就指定branch v5.4-rc1

  • 这里的branch我是在github上的tag中选取的
git clone https://github.com/torvalds/linux.git --branch v5.4-rc1 --depth 1 ./

你可能感兴趣的:(Git仅拉取指定版本的代码)