Is it possible to download a repository\'s commits, branches, and tags, excluding blobs and trees? I would like to be able to view the history and whatnot without downloadin
The "Partial Clone" feature was added in git 2.19.
Documentation here: https://www.git-scm.com/docs/partial-clone
In order to use it:
git config --global uploadpack.allowFilter truegit clone --filter=tree:0 REMOTE_URL