Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 2.13 KB

README.md

File metadata and controls

27 lines (22 loc) · 2.13 KB

This repository contains the code for the lab's website hosted on Github pages and can be accessed at https://cuadvancelab.github.io

Helpful links

  • Bootstrap. Learn bootstrap. Boostrap is used for fast styling to avoid styling things like buttons from scratch. This reduced the amount of custom styles written.

Deployment Information

This website is hosted on Github pages Here is a short guide

Making Changes to the Website

  1. Fork this repository
  2. Clone the forked repo to get a local copy on your system
  3. Cd in the repo
  4. From your web browser open the index.html or start a simple python3 server with python3 -m http.server in the project directory
  5. Check the branch you are on: git branch
  6. Create a new branch to work on your changes: git branch <branch name>
  7. Switch to the new branch: git checkout <branch name>
  8. Make your changes, you have to refresh the page to see your changes
  9. Check files that have changed: git status
  10. Add changed files: git add <file> or git add -A
  11. Commit changes: git commit -m "your message"
  12. Push changes to your forked repo: git push
  13. Go back to your repository where you created your fork and follow the instructions on github to create a pull request (PR). Note, the 'head branch' should be the branch you made your changes in (the branch you created above). The 'base branch' should be 'main'. Don't forget to add a little description of your changes. Code maintainers will review the changes and merge it, if you are a collaborator you can review and merge immediately.
  14. Once merged, the changes should reflect on the website

Note: On subsequent changes, you have this repo already in your local machine and a fork on your github repository. To keep the forked repository up to date with the original repository, follow these instructions