Skip to content

Latest commit

 

History

History
98 lines (68 loc) · 3.5 KB

CONTRIBUTING.md

File metadata and controls

98 lines (68 loc) · 3.5 KB

Contributors Guide⚡

Welcome to our open-source project! 😍
We appreciate your interest in contributing.😊
This guide will help you get started with the project and make your first contribution.

Creating first Pull Request 🌟


  1. Create a folder at you desired location (usually at your desktop).

  2. Open Git Bash Here.

  3. Create a Git Repository. Run the command git init

  4. Fork the repository.

  5. Clone your forked repository of project.

git clone https://github.com/<your-github-username>/DevFlexPort.git
  1. Navigate to the project directory.
cd DevFlexPort
  1. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/hunter-420/DevFlexPort.git
  1. Check the remotes for this repository.
git remote -v
  1. Always take a pull from the upstream repository to your main branch to keep it updated as per the main repository.
git pull upstream main
  1. Create a new branch.
git checkout -b <your_branch_name>
  1. Perform your desired changes to the code base.

  2. Check your changes

git status
git diff
  1. Stage your changes
git add . <\files_that_you made_changes>
  1. Commit your changes.
git commit -m "<your_commit_message>"
  1. Push the committed changes in your feature branch to your remote repository.
git push -u origin <your_branch_name>
  1. To create a Pull Request, click on compare and pull requests.

  2. Add an appropriate title and description to your PR explaining your changes.

  3. Click on create pull request.

Congratulations🎉, you have made a PR to the DevFlexPort. Wait for your submission to be accepted and your PR to be merged by a maintainer.

If you have any doubts please let us know in comments.

Communication and Support 💬

Join the project's communication channels to interact with other contributors and seek assistance.
If you have any questions or need help, don't hesitate to ask in the project's communication channels or comment on the relevant issue.

Code of Conduct 😇

Please follow our project's code of conduct while contributing.
Treat all contributors and users with respect and create a positive and inclusive environment for everyone.

License 📄

The project is licensed under [MIT]. Make sure to review and comply with the license terms.
We hope this guide helps you get started with contributing to our open-source project. Thank you for your contribution!

Note from Author ❗

Welcome to DevFlexPort! 🚀 Whether you're a seasoned developer or just getting started, our open-source repository is a space for meaningful contributions and collaboration. We encourage a diverse community to bring their unique perspectives and skills.

We value your contributions, and we strive to maintain a positive and productive environment. To ensure the quality of pull requests, we have some guidelines in place. While we welcome your creativity, we kindly ask you to avoid submitting irrelevant or spammy pull requests, as they may be marked as invalid.

Your contributions are important to us, and we appreciate your commitment to making DevFlexPort a thriving open-source project. Let's build something great together!