layout |
---|
default |
There are two different repositories with similar names, i.e. workwithme.guide-myguide
and workwithme.guide
. The first repository in the instructions below (i.e. workwithme.guide-myguide) is for your personal work with me profile page, the other repository (i.e. workwithme.guide) in step 3 is this website's repository; think of the website repository as the place where all work with me profile pages can reside. Let's get started!
- First we're going to make your personal work with me profile page. Fork workwithme.guide-myguide on GitHub. We'll call this the profile repository.
- With your forked profile repository, modify
index.md
, optionally adding a profile picture to the top level directory. Make sure your edits are pushed your fork of the profile repository. - Next fork [this project]({{ site.github.repository_url }}) on GitHub. We'll call this the website repository. Clone this forked website repository.
- Now we combine your profile repository with your fork of the website repository by a submodule command. Using your cloned website repository on your local machine, run
git submodule add -b master https://github.com/USERNAME/workwithme.guide-myguide.git WWM_LINK
whereUSERNAME
is your GitHub username andWWM_LINK
is the link you'd like atworkwithme.guide/WWM_LINK
. To explain what's going on,https://github.com/USERNAME/workwithme.guide-myguide.git
should be your forked profile repository andWWM_LINK
creates a folder with the contents of your profile repository. If you don't specifyWWM_LINK
, your link will end up beinghttps://workwithme.guide/workwithme.guide-myguide
. - We should now have your profile repository as a submodule in your website repository. Push your changes and make a Pull Request to this repo
abloomston/workwithme.guide
, notpages-themes/minimal
. This is how you will make changes to your Work With Me Guide (for now--this is a prototype). - Once I merge your Pull Request your Work With Me Guide will be available at
https://workwithme.guide/WWM_LINK
.