2

Is it possible to print(out of a printer) an entire github repository quickly? I have a repository with a large amount of code files that would take an excessively long time to download and print off manually. The order in which the files are printed does not matter(so long as each file is structurally together). I have found tools such as gitprint, however only support one file at a time.

Michele Dorigatti
  • 811
  • 1
  • 9
  • 17
Mdren
  • 81
  • 1
  • 4

1 Answers1

0

Check first if you cannot download the archive, instead of cloning the repository with all its history.

That way, you only get the last state of master HEAD, which should be much smaller than the all repository.
It would then be much easier to list all files and script a command printing them all from your local disk.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250