How to host on GitHub Pages with Git Submodules

Felix Wu
We’ve moved to freeCodeCamp.org/news
3 min readMar 15, 2018
https://twitter.com/jeremyckahn/status/280406794583539712

Git Submodules is one of the most terrific but exhausting features in Git.
I mean, we all love Git, right? But have you ever tried using Git Submodules?

Actually, standalone Git Submodules aren’t hard to understand. Initializing is easily done by typing:

git submodule add <link-to-remote-repo>

However, I recently wanted to use submodules for hosting my reveal.js presentations based on a subpath, and this got quite complicated as I didn’t had any tutorial to refer to.

I basically wanted to have a repository called “presentations,” so that GH-Pages would host this repository on the respective subpath (http://presentations.flxwu.com/) in which I could include my actual reveal repositories.

Thus, I could have separate standalone repos for my presentations which would be automatically updated in the “presentations” repository. This would cause my “firebase-101” repository to be hosted on http://flxwu.com/presentations/firebase-101.

You can also host on a custom subdomain — I have my presentations at presentations.flxwu.com/[repo name]. Therefore you can still have your other non-presentations repositories under username.github.io/[repo name]

Setting up the local repository

First off, we initialize a new repository and add respective submodules to it.

mkdir parentrepo && cd parentrepo/
git init
git submodule add https://github.com/flxwu/firebase-101

You may replace my repository link with your respective repository which you want to host on your username.github.io/parentrepo/[repository name] subpath. Just make sure that the link uses HTTPS and the repository is public.

Now commit everything and go through the usual procedure of creating the GitHub repository, adding the remote GitHub repository locally and pushing to it:

git commit -a -m "Initial Commit"
git remote add origin [your github repository .git link]
git push origin master

Your GitHub repository should now look like this (except with only one hooked folder in case you only added one submodule)

Now go into the settings and publish the “master” branch on GitHub Pages. You should now see this below, replacing [flxwu.com] with your own user GitHub pages domain (username.github.io if you didn’t set a custom one).

You can now also set a custom subdomain:

This is how I configured GitHub Pages

Now, your respective submodule firebase-101 (if you didn’t add your own repo instead of mine) is hosted at subdomain.domain.com/firebase-101.

Success!

If this article helped you, please leave some claps and follow me on twitter @flxwu

--

--

Felix Wu
We’ve moved to freeCodeCamp.org/news

Just some 17 y/o German high schooler trying to better the world with code. Full-Stack&Mobile, FOSS&Linux, RGSoC&CoderDojo Mentor, PH Top Maker, IaC Finalist.