Skip to content

Branching Strategy

Alvin Reyes edited this page Aug 16, 2022 · 2 revisions

image

Creating a new feature branch

git clone https://github.com/application-research/estuary.git
git checkout dev 
git checkout -b feat/feature1

Creating a new hotfix branch

git clone https://github.com/application-research/estuary.git
git checkout hotfixes 
git checkout -b fix/error-found

Creating a tag

git clone https://github.com/application-research/estuary.git
git checkout master
git tag vx.x.x
git push origin vx.x.x
Clone this wiki locally