Import Github Repo to a folder within Glitch

Hello, I would like to import files and folders from my git repo to a certain folder within my glitch project without replacing everything, can and how would I do that?

Totally possible. I would use wget from the Glitch terminal to download the Github repository archive which is normally located at https://github.com/[username]/[repositoryName]/archive/master.zip. This will get the repository’s files into your project’s file system. From there you could unzip the archive and move the files around like you would on any other Linux machine.

4 Likes