How to download all files of a GitHub project with wget
?
All files should be downloaded in their raw form.
Already tried:
wget -P ~/ https://raw.githubusercontent.com/u/p/b/*
wget -P ~/ https://raw.githubusercontent.com/u/p/b/{*}
wget -P ~/ --accept-regex urlregex https://raw.githubusercontent.com/u/p/b/*
wget -P ~/ --recursive https://raw.githubusercontent.com/u/p/b/
This is opposed to wget -P ~/ https://raw.githubusercontent.com/u/p/b/{file1,file2...}
u=user,p=project,b=branch.
git clone
the repo and use or copy whatever files you need from your local clone? – cas Feb 03 '18 at 02:09