Git clone any sub-directories/parts of a GitHub repo
1–6 of 6 posts
Re: Git clone any sub-directories/parts of a GitHub repo
#2The advantage of this tool over 'git clone --depth 1' is that this tool can clone just specific files?
Re: Git clone any sub-directories/parts of a GitHub repo
#3Re: Git clone any sub-directories/parts of a GitHub repo
#4With github API rate limiting it seems ridiculous to expect it to be faster than a basic shallow git clone.
Re: Git clone any sub-directories/parts of a GitHub repo
#5Excuse my ignorance. The advantage of this tool over 'git clone --depth 1' is that this tool can clone just specific files?
I can imagine that it’s mostly for convenience.
I can think of use cases including:
- downloading a single package from a monorepo
- being able to copy paste a url from GitHub for the directory you are currently viewing
Re: Git clone any sub-directories/parts of a GitHub repo
#6Excuse my ignorance. The advantage of this tool over 'git clone --depth 1' is that this tool can clone just specific files?
A motivational section in readme would be useful. I can imagine that it’s mostly for convenience. I can think of use cases including: - downloading a single package from a monorepo - being able to copy paste a url from GitHub for the directory you are currently viewing
Yeah as you've said, I often find myself wanting to only download a certain directory, path or package of an especially big repo that I'm currently viewing (without even cloning the entire repo at depth 1) and to do so by simply copy & pasting the GitHub URL so that's why. Probably more instances where this might come in handy ;)