iCyborg
iCyborg

Reputation: 4738

How to take print out of the code of github repo ?

I have a github repo and I want to take printouts of its code, now i can copy/paste the code a word document and then can take the print out but I was wondering, is there any easy and better way to do this ? as I have some 40 files

Upvotes: 0

Views: 1583

Answers (1)

Emil Davtyan
Emil Davtyan

Reputation: 14099

First you would have to git clone the repository from github to your local filesystem.

And then on a Linux (and maybe on a Mac) machine you can use lpr command to print out files through the terminal.

Upvotes: 1

Related Questions