Secrets

Exercise

Form

React

Life cycle diagram

GraphQL

Schema Cheat Sheet

Develop flow

git checkout develop
git checkout -b feature/featurename develop 
git add . 
git commit -m "commit message" 
git checkout develop 
git merge feature/featurename 
git push 

Release flow

cd /project_root
git checkout -b release/x.x.x develop 
git push -u origin release/x.x.x 
// The code is now in Git and can be moved to a staging environment 
git add . 
git commit -m "release message" 
git checkout develop 
git merge release/x.x.x 
git push 
git checkout master 
git merge release/x.x.x 
git push 
git tag vX.X.X 
git push origin vX.X.X 
git branch -d feature/featurename