An average contribution would involve the following:
- Fork this repository in your account.
- Clone it on your local machine.
- Add a new remote using
git remote add upstream https://github.com/hardhat5/sound-event-classification.git. - Create a new feature branch with
git checkout -b my-feature. - Make your changes.
- Commit your changes.
- Rebase your commits with
upstream/main:
git checkout maingit fetch upstream maingit reset --hard FETCH_HEADgit checkout my-featuregit rebase main
- Resolve any merge conflicts, and then push the branch with
git push origin my-feature. - Create a Pull Request detailing the changes you made and wait for review/merge.