Thank you visiting and for your interest in collaborating to this project.
Please visit our issues page for tasks we currently need help with. If you find an issue you would like to contribute, please comment on it, so others can see someone is already working on this. Please remember to make a reference to your issue number when you open your pull request.
IMPORTANT:
- Pull requests (PRs) will only be accepted if you've first claimed the issue and it has been assigned to you by the maintainers.
- We are only accepting PRs for existing issues on the issues page. If you'd like to propose something that is not listed, please create an issue and get approval from the maintainers before submitting a PR.
- Don't
pushto main onlypullfrom git - Branch names: lower-case with underscores separating words name it as close and brief to the feature you're creating like
script_folderor simplyreadme - Commit messages: a sentence in present-tense with punctuation that gives a decent description of what was done. For example, something as simple as "Adds readme file"
IMPORTANT: Please don't commit package-lock.json unless you added any packages to the project
πRemember, it's just a web page, we can fix anything. Go crazy and ship code!
- You will need to 'Fork' this repository to your account
- Next you will need to 'Clone' your fork to your computer
- To sync the latest from the upstream (swflcoders project)
- Add upstream:
git remote add upstream git@github.com:swfl-coders/tech-alliance-website.git - Get latest from upstream:
git fetch upstream - Checkout main branch:
git checkout main - Bring in latest changes from upstream into your main branch:
git rebase upstream/main
- Add upstream:
- Create a new branch
git checkout -b name_of_feature_branch - Code stuff π
git add .git commit -m "Adds cool feature and closes #2"(assuming you are working onissue #2)git push origin name_of_feature_branch- Create a PR (pull request) in GitHub and tag an organizer for code review
- Teammate/organizer leaves comments and/or merges your code
- Feature branch deleted once successfully merged into GitHub main
git statusgit loggit branchgit branch -agit checkout -b branch_namegit checkout branch_name
git add .git commit -m "Cool message in present tense"
git pullgit push origin branch_name