Show HN: Downloading a folder from a repo using rust

https://news.ycombinator.com/rss Hits: 2
Summary

Git Down git-down lets you download one or multiple directories from a Git repository without the hassle of cloning or downloading the whole repository, with one simple command. Usage It's really easy to use. $ git-down -d < DESTINATION_DIRECTORY > < REPO_URL.git:branch > FILES The -d <DESTINATION_DIRECTORY> option above is optional. If not specified the files will be downloaded into a directory under the name of the target repository. We're using the bootstrap repo as an example for how to use the command but it works with any repository. For example, running the following command will create a bootstrap-dist directory in the current working directory containing bootstrap's dist directory. $ git-down -d bootstrap-dist https://github.com/twbs/bootstrap.git:master dist If bootstrap-dist above is not specified, a directory named bootstrap will be created instead. Download multiple directories You can use git-down to download multiple directories from the same repository. For example if you wanted to download both the dist and src directories from the Bootstrap repo you would use the following command. $ git-down https://github.com/twbs/bootstrap.git:master dist src Shortcuts Shortcuts are intended to reduce keystrokes by allowing you to download from popular Git hosting services without typing out the full URL of the repository. When using shortcuts the parts of the source are separated using colons (:). The following are working examples you can use for downloading a directory from supported services: GitHub The following example command will download the dist directory from bootstrap repo into boostrap-latest from the GitHub repository. $ git-down -d bootstrap-latest gh:tbws/bootstrap:master dist Get only the css directory $ git-down -d bootstrap-css gh:tbws/bootstrap:master dist/css Get the css and img directories $ git-down -d boostrap-css-img gh:tbws/bootstrap:master dist/css dist/img BitBucket $ git-down -d sqlalchemy-examples bb:zzzeek/sqlalchemy:master example...

First seen: 2025-09-10 11:08

Last seen: 2025-09-10 12:08