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.
If none of the issues you see is something you want to help, don't worry, you can still contribute. Just open a pull request and use the enhancement label.
- Don't
push
to master onlypull
from git - Branch names: lower-case with underscores separating words name it as close and brief to the feature you're creating like
script_folder
or 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 https://github.com/whoever/whatever.git
- Get latest from upstream:
git fetch upstream
- Checkout master branch:
git checkout master
- Bring in latest changes from upstream into your master branch:
git rebase upstream/master
- 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 master
git status
git log
git branch
git branch -a
git checkout -b branch_name
git checkout branch_name
git add .
git commit -m "Cool message in present tense"
git pull
git push origin branch_name