Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 947 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (28 loc) · 947 Bytes

Contributing

  1. Fork the repository:

    • Go to the GitHub repository and click on "Fork".

    • Clone the forked repository to your local machine:

      git clone https://github.com/your-username/clinicwave-user-management-service.git
      cd clinicwave-notification-service
  2. Set up the upstream repository:

    git remote add upstream https://github.com/ClinicWave/clinicwave-user-management-service.git
  3. Create a new branch for your feature:

    git checkout -b feature
  4. Make changes and commit them:

    git commit -am 'Add new feature'
  5. Push the changes to your forked repository:

    git push origin feature
  6. Create a pull request:

    • Go to your fork on GitHub and click on the "Pull Request" button.
    • Select your new branch and compare it with the main branch of the upstream repository.
  7. Get your changes reviewed and merged.