Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 552 Bytes

_HELM-CHART-TEST.md

File metadata and controls

24 lines (23 loc) · 552 Bytes

How to work with this helm-charts-test repository

  1. Clone this repository
  2. Add the original helm-chart repo as upstream
git remote add upstream git@github.com:komodorio/helm-charts.git 
  1. fetch the upstream
git fetch upstream 
  1. Update master branch
git checkout master
git merge upstream/master
  1. Create a new branch for your changes
git checkout -b BRANCH_NAME
  1. In case you want to check a change in the upstream, you can merge it to your branch
git merge upstream/BRANCH_NAME