Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.31 KB

File metadata and controls

43 lines (35 loc) · 1.31 KB

Contributing

We appreciate contributions to Notevo! Follow these steps to contribute:

  1. Fork the Repository

    • Click the 'Fork' button at the top right of the repository page on GitHub.
  2. Clone Your Fork

    mkdir(Creating a new directory (folder))
    cd new_directory
    git clone https://github.com/YOUR_USERNAME/Notevo.git
    cd Notevo
    
  3. Create a New Branch

    git checkout -b feature-name or
    git switch -c feature-name
  4. Make Changes

    • Implement your feature or fix the bug.
    • Commit your changes with a descriptive message.
    git commit -m "Add feature XYZ"
  5. Push Your Branch

    git push origin feature-name
  6. 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! 🚀

Important Notes:

  • 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.