Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论如何,我们是否只能下载分支的内容,而不是存储库。我需要一个分支来在服务器上构建,所以我只对我的文件感兴趣,而不是任何存储库的东西。
您应该--single-branch为 git clone 使用修饰符。假设一个分支叫做my_branch
--single-branch
my_branch
$ git clone --single-branch --branch my_branch
这将下载分支的所有历史记录。使用--depth修饰符,您只能获得最新的修订:
--depth
$ git clone --depth 1 --single-branch --branch my_branch