How to Sparse checkout with Tortoise Git?

The working way to sparse checkout using git bash is:

git clone \ --depth 1 \ --filter=blob:none \ --sparse \ \ cd test-git-partial-clone git sparse-checkout set js 

How do we sparse checkout this same code using Tortoise Git - Git clone tool? I am getting unknown options error while running this command.

Git clone - Tortoise Git Window

1

1 Answer

As of version 2.13 sparse checkout is not supported, yet.

cf. and

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like