Thank you for contributing to this repository, before submitting any changes please read our general guidelines here
There are many ways to get started. This guide assumes you have both git
and gh
installed on your system
click on the fork
button on the repo page
In your terminal type git clone https://github.com/hullcss/hullcss-site-jet
Using GitHub CLI
Tn your terminal type
gh repo fork hullcss/hullcss-site-jet
Once the repo has been forked and is on your system, you'll want to create a new branch with a name detailing what your branch is. An example would be
git branch fixing-dead-links
git checkout fixing-dead-links
Open up the files you want to change in your favourite text editor or IDE and commit your changes
git add -A
git commit -m "your-commit-message-here"
git push --set-upstream origin your-branch-name
note: --set-upstream origin testing
is only required if you have not already made a contribution. All pushes outside of your first can be done through a plain git push
you can then use the gh pr create
command to make a pull request to have your changes reviewed and potentially merged into the main repository.
You will be given a few prompts, fill them in and enter Submit.
Clone your newley forked repo into Visual Studio Code using the HTTP URL found when pressing the green code button.
Make your changes.
Press the Git button and push your changes.
Press Contribute and follow the steps to create a pull request.
Congratulations, You now have contributed to the site repo unless your changes are denied or you need to make more changes.