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