Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 879 Bytes

CONTRIBUTING.md

File metadata and controls

46 lines (35 loc) · 879 Bytes

How to contribute:

  1. Fork this repository on your own GitHub Account

  2. Clone this repository to your local machine

$ git clone "https://www.github.com/{Your Git Username}/Observability-As-Code"
  1. Go to the root folder of this repository
cd Evolvve-Student-Chapter-Application
  1. Make your changes on new branch
$ git checkout -b {branch name}
  1. Stage your changes
$ git add {filename}
  1. Commit your changes
$ git commit -m "Commit message"
  1. Push your branch
$ git push -u origin {branch name}
  1. Go to GitHub and open a pull request to the upstream repository

How to update forked repository with our main repository

$ git remote add upstream "https://www.github.com/StatusNeo/Observability-As-Code"
$ git checkout master
$ git fetch upstream
$ git merge upstream/master
$ git push -f origin master