Create a pull request from a fork
You can commit to master on your own fork. That is fine. I can only review and merge your changes once you open a pull request into the main repo.
Step by step using GitHub
- Fork the repo
- Create a branch on your fork
- Commit your changes
- Open a pull request into idncod/snappycart targeting master
- Enable allow edits by maintainers
- Fix review feedback by pushing more commits to the same branch
Step by step using terminal
git clone https://github.com/YOUR_USERNAME/snappycart.git
cd snappycart
git remote add upstream https://github.com/idncod/snappycart.git
git fetch upstream
git switch -c fix/some-change
git add .
git commit -m "fix: your change"
git push -u origin fix/some-change