- Follow our Code of Conduct.
- Open an issue for problems or suggestions.
- Fork the repository (Click the Fork button in the top right of this page)
- 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
- 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
- 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
- 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!