We appreciate contributions to Notevo! Follow these steps to contribute:
-
Fork the Repository
- Click the 'Fork' button at the top right of the repository page on GitHub.
-
Clone Your Fork
mkdir(Creating a new directory (folder)) cd new_directory git clone https://github.com/YOUR_USERNAME/Notevo.git cd Notevo
-
Create a New Branch
git checkout -b feature-name or git switch -c feature-name
-
Make Changes
- Implement your feature or fix the bug.
- Commit your changes with a descriptive message.
git commit -m "Add feature XYZ" -
Push Your Branch
git push origin feature-name
-
Submit a Pull Request
- Go to the original repository on GitHub.
- Click 'New Pull Request' and select your branch.
- Provide a clear description of your changes.
- Submit the pull request for review.
We will review your PR and provide feedback as needed. Thanks for contributing! 🚀
- origin points to your fork, not the original repo. That's why you push to origin.
- The Pull Request is how you ask the original repo owners to merge your changes.
- After pushing, GitHub will show you the button to open the PR from your fork → original repo.