Cloning a repo through an organization #117
-
Hi! I created a site for a cultural organization with the Collection Builder template, using an account that I set up: https://deepsouthdh.github.io/blmoor/. The people I worked with to create the site want to have better control of the content, and they want the URL to be just blmoor.github.io. So I created an organization in github (https://github.com/blmoor), cloned the repo from the original site, and tried to deploy it as https://blmoor.github.io/, but I get a 404 error. I don't think I changed anything, so I'm wondering if anyone with more github prowess than I can help me figure out why it isn't working, and how to fix it! Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@hillaryAHR first, the
You will want to remove the /blmoor from your url (and I would update the source-code location too), so it will look like:
Then it should build correctly. Let us know if it works! |
Beta Was this translation helpful? Give feedback.
@hillaryAHR first, the
url
variables in "_config.yml" are off--> you have the project in the repository named "blmoor.github.io", which github pages will serve athttps://blmoor.github.io/
(as you mentioned).In "_config.yml" in the URL VARIABLES section currently looks like:
You will want to remove the /blmoor from your url (and I would update the source-cod…