foliant
foliant copied to clipboard
Pulling a single file from a big remote repository
It’s often required to include the content of a single file from remote repository into a document. The repo can contain a lot of files, and the files can be large.
When we use built-in includes, the source repository will be fully cloned, as far as I know:
{{ <[email protected]:foliant-docs/foliant.git>README.md }}
It seems useful to get an optional possibility to pull certain files from big remote repositories by using commands like this:
$ git archive [email protected]:foliant-docs/foliant.git HEAD README.md | tar -xO > ./README.md