Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 2.09 KB

CONTRIBUTING.md

File metadata and controls

50 lines (40 loc) · 2.09 KB

Table of contents

Contributing to Elderly

Code of Conduct:

Reporting Issues:

How to Contribute:

Fork the repository

  1. Fork the repository (Click the Fork button in the top right of this page)

Clone the repository

  1. Clone the forked repository to your local machine. For this step and the steps bellow, you can simply complete them by going to your command prompt on your computer, then inputing the code and will allow you to input your changes.
git clone https://github.com/your-username/ecommerce.git

Creating a branch

  1. Create a New Branch. Creating a new branch allows for new ideas, fix some bugs, or experiement with new ideas safetly in a specific area of the repository
git checkout -b new-branch-name

Making changes

  1. Make your changes. Making changes allows for modifications to the program which can help improve the quality and efficiency of the it. Making changes is what you use to debug things so the repository runs correctly.
git add .
git commit -m "Your commit Message"
git push origin branch-name

Creating a pull request

  1. Create a pull request to the main repository's master branch. Once you submit your pull request, the owner will be able to the changes that you've made and can accept those changes to be added to the main project. Once you commit the changes you have made, a pull request notification will pop up and will allow you submit your request.

Thank you for contributing!

Happy coding 🚀