Skip to content

Latest commit

 

History

History
63 lines (39 loc) · 1.66 KB

File metadata and controls

63 lines (39 loc) · 1.66 KB

Contributing to MakeItMVP Launch Academy Starter Repository

We are excited that you want to contribute to our project! Here are a few guidelines to help you get started:

How to Contribute

  1. Fork the repository:

    • Click the "Fork" button at the top right of this repository.
  2. Clone your forked repository:

    git clone https://github.com/your-username/P4_Skill_Exchanage.git
    cd P4_Skill_Exchange
  3. Create a new branch for your feature or bug fix:

    git checkout -b your-feature-branch
  4. Make your changes:

    • Add your new feature or bug fix.
  5. Commit your changes:

    git add .
    git commit -m "Description of your changes"
  6. Push your changes to your forked repository:

    git push origin your-feature-branch
  7. Open a Pull Request:

    • Go to the original repository and click on the "New Pull Request" button.
    • Choose the branch you just pushed to and compare it with the main branch of the original repository.
    • Provide a clear title and description for your pull request.

Code Style

Please follow these coding standards:

  • Use descriptive variable and function names.
  • Write clear and concise comments.
  • Maintain consistent indentation and formatting.

Reporting Issues

If you find any bugs or have feature requests, please open an issue in the Issues section.

Code of Conduct

By participating in this project, you agree to abide by our Code of Conduct.

Thank you for contributing to MakeItMVP Launch Academy Starter Repository!