Note
Our capstone project is still in progress in development. This is still not working well and we are addressing some challenges.
- Go to the repository you want to contribute to on GitHub.
- Click on the "Fork" button at the top right corner of the page.
- Clone the forked repository to your local machine using:
git clone https://github.com/devseasense/seasense.git
- Navigate into the repository's directory:
cd seasense
- Create a new branch to make your changes
git checkout -b branch_name
- Make the necessary changes in your code.
- Test your changes to ensure they work as expected.
- Add your changes:
git add .
- Commit your changes:
git commit -m "feat: Description of changes"
- Push your changes to the forked repository:
git push origin branch-name
- Go to your forked repository on GitHub.
- Click on the "Compare & pull request" button.
- Provide a clear title and description for your pull request.
- Submit the pull request.