Skip to content

Instantly share code, notes, and snippets.

@hofnerb
Last active February 6, 2024 22:07
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save hofnerb/a5ebf4e0c89caffc40ee to your computer and use it in GitHub Desktop.
Save hofnerb/a5ebf4e0c89caffc40ee to your computer and use it in GitHub Desktop.
Make sparse clone
git init <repo>
cd <repo>
git remote add -f origin <url>

This creates an empty repository with your remote, and fetches all objects but doesn't check them out. Then do:

git config core.sparseCheckout true

Now you need to define which files/folders you want to actually check out. This is done by listing them in .git/info/sparse-checkout, eg:

echo "some/dir/" >> .git/info/sparse-checkout
echo "another/sub/tree" >> .git/info/sparse-checkout

Last but not least, update your empty repo with the state from the remote:

git pull origin master

Source: http://stackoverflow.com/a/13738951/2574238

@thedrdos
Copy link

Thanks you :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment