Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 860 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (25 loc) · 860 Bytes

🧑‍💻 Contributor Flow

This is a rough outline of what a contributor's workflow looks like: first of you have to fork the repository

follow the steps.

click to fork

  • clone the project locally
git clone https://github.com/github_username/70DaysOfServiceMesh/
  • Add upstream url
git remote add upstream https://github.com/distributethe6ix/70DaysOfServiceMesh/
  • create a new branch
git checkout -b <your_branch_name>
  • commit your changes
git commit -m "your message"
  • Push your changes
git push origin <your_branch_name>

Now you can check your change in your fork version and then create a pull_request and wait for the review. The project maintainer will review your PR and then they will merged it.