如何使用 Tortoise Git 进行稀疏结帐?

How to Sparse checkout with Tortoise Git?

使用 git bash 进行稀疏结帐 的工作方式是:

git clone \
--depth 1  \
--filter=blob:none  \
--sparse \
https://github.com/darc-coder/FindMyQRApp \
cd test-git-partial-clone
git sparse-checkout set js

我们如何使用 Tortoise Git - Git clone 工具稀疏检查相同的代码?我收到 未知选项错误 而 运行 此命令。

从版本 2.13 开始,不支持稀疏签出。

比照。 https://tortoisegit.org/issue/1599 and https://tortoisegit.org/issue/3667