Secrets
Exercise
FormReact
Life cycle diagramGraphQL
Schema Cheat SheetDevelop 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