Skip to content

Latest commit

 

History

History
91 lines (56 loc) · 2.85 KB

CONTRIBUTING.md

File metadata and controls

91 lines (56 loc) · 2.85 KB

PRs Welcome GitHub Issues GitHub PRs

We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:

  • Reporting a bug
  • Submitting a fix
  • Proposing new features

Learn about installation here🚀

Getting Started with contributing🌟

Please follow these simple steps to start working:

1. If you want to work on issue then comment. If you get assigned, Fork this repository.

2. Clone your forked copy of the project.

git clone https://github.com/ddosify/ddosify-docker-extension.git

3. Navigate to your project directory and open it in your code editor. 📁 .

cd ddosify-docker-extension

4. Add a reference(remote) to the original repository.

git remote add upstream https://github.com/ddosify/ddosify-docker-extension.git

5. Check the remotes for this repository.

git remote -v

6. Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository).

git pull upstream main

7. Create a new branch.

git checkout -b <your_branch_name>

8. Perform your desired changes to the code base.

9. Track your changes:heavy_check_mark: .

git add . 

10. Commit your changes .

git commit -m "Relevant message"

11. Push the committed changes in your feature branch to your remote repo.

git push -u origin <your_branch_name>

12. Open a Pull Request with a name of the issue and describe about your changes with reasons. To create a pull request, click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repository you are supposed to make a PR to.

13. Add appropriate title and description to your pull request explaining your changes and efforts done.

14. Click on Create Pull Request.

15 Voila!
16 Woohoo! You have successfully made a PR💥 Wait for your submission to be reviewed and accepted.

Thank you for your interest in contributing to our Repo!🏼


Kudos to you🎈