Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.57 KB

File metadata and controls

32 lines (27 loc) · 1.57 KB

Contributing to RocketDelivery

Thank you for your interest in contributing to the RocketDelivery project! We appreciate your help in making this project better.

How to Contribute

  1. Fork the Repository: Click the 'Fork' button on the top right corner of the repository page to create a copy of the repository in your GitHub account.
  2. Clone Your Fork: Clone your forked repository to your local machine using the following command:
    git clone https://github.com/<your-username>/RocketDelivery.git
  3. Create a New Branch: It’s a good practice to create a new branch for each contribution. You can do this with:
    git checkout -b my-feature-branch
  4. Make Changes: Open the code in your preferred editor and make your changes.
  5. Commit Your Changes: After you’ve made your changes, commit them with a meaningful message:
    git commit -m "Add some feature"
  6. Push to Your Fork: Push your changes back to your fork:
    git push origin my-feature-branch
  7. Submit a Pull Request: Go to the original repository (RocketDelivery) and click on the "New Pull Request" button. Select your branch and submit the pull request.

Guidelines

  • Code Quality: Make sure your code adheres to the existing code style and is well tested.
  • Documentation: If your changes affect the documentation, please update it accordingly.
  • Communication: Keep communication open; if you have questions, feel free to ask!

Thank you for contributing! We're excited to see your contributions to RocketDelivery!