#Contributing Steps
Note: We only accept contributions of specific fixes (bugs, linters or docs), new features will be implemented by the team of Hitechline
#Starting
- Fork the repository
- Clone the respository of your machine
#Installing dependencies
$ yarn install
#After that create your production branch
$ git checkout -b branch_name
Make the necessary updates to the code.
#Ending
- Check that all tests pass
$ yarn test
- Add the changed files and create the commit
$ git add file_name
$ git checkout -m "commit message"
Note: Use semantic commits.
- Send the updates to github
$ git push origin branch_name
- Pull request with changes to branch main
#Solutions
If your fork is not up to date, do the next steps below
$ git remote add upstream git@github.com:hitechline/react.git
$ git checkout main
$ git fetch upstream
$ git rebase upstream/main
$ git push origin main