Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 1.95 KB

Contributing.md

File metadata and controls

76 lines (53 loc) · 1.95 KB

Contributing to Citizen Squad

Thank you for considering contributing to Citizen Squad! We welcome contributions from the community and are excited to work with you.

How to Contribute

  1. ** 🍴 Fork the repository**: Click the "Fork" button at the top right of the repository page.

  2. ** 📥 Clone your fork**:

    git clone https://github.com/your-username/Citizen_Squad.git
  3. 📂 Change the working directory.

    cd Citizen_Squad
  4. 🔗 Add a reference to the original repository.

    git remote add upstream https://github.com/Shubham-Zone/Citizen_Squad.git
  5. 🔍 Check the remotes for this repository.

    git remote -v
  6. ⬇️ Always take a pull from the upstream repository to your main branch to keep it up-to-date with the main project (updated repository).

    git pull upstream main
  7. 🌿Create a new branch:

    git checkout -b feature/your-feature-name
  8. Make your changes: Implement your feature or bug fix.

  9. 📊 Track your changes.

    git add .
  10. ** 💬Commit your changes**:

    git commit -m "Description of your changes"
  11. ** 🚀Push to your fork**:

    git push origin feature/your-feature-name
  12. Create a Pull Request: Go to the original repository and click the "New Pull Request" button.

Code of Conduct

Please adhere to our Code of Conduct in all your interactions with the project.

Reporting Issues

If you encounter any issues, please report them using the issue tracker.

Getting Help

If you need help, feel free to reach out by opening an issue or joining our community chat.

Style Guide

  • Follow the existing code style.
  • Write clear and concise commit messages.
  • Include tests for new features and bug fixes.

Thank you for your contributions!