Total newbie- how do I put my challenge on GitHub pages? #89909
-
I'm really struggling - I'm very new to GitHub and I'm trying to get my first code challenge uploaded to view. I managed to get the files into a github repository, but after that, I can't seem to figure out anything about getting the code to be viewed. It says I have one deployment, but that was just the screenshot, I think. Help! (This may be the most difficult part of coding for me, learning GitHub!) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
To make your code visible on GitHub, you need to ensure that your repository contains the necessary files and that GitHub Pages is configured correctly. Here's a step-by-step guide to help you:
If you've done all of this and are still having issues, let's troubleshoot. Check the following:
If you encounter specific issues, feel free to share more details, and I'll do my best to assist you! |
Beta Was this translation helpful? Give feedback.
-
Hi @DoDoingDone,I've deployed a copy of your site. I just want to make sure, is your pages settings the same as the screenshot?: |
Beta Was this translation helpful? Give feedback.
-
Having the same publishing issue. My repo sync's fine with my computer even after renaming the repo from JS_Projects to js-projects.
I'm stumped? The repo: |
Beta Was this translation helpful? Give feedback.
go through the process of checking and ensuring that your code files are correctly placed in the repository.
Access Your Repository:
Go to your GitHub repository on the web browser.
Verify Files:
Once you're in your repository, look for your code files. Commonly, your main code file would be something like index.html for a web project. If you have multiple files, make sure they are all present.
Adding Files to Repository:
If you haven't added your code files to the repository yet, here's how you can do it:
On the GitHub repository page, click on the "Add file" button.
You can either upload files directly or create a new file by clicking on "Create new file."
Ensure that your main code fil…