EventManager Web Frontend
Clone repo and switch to develop branch
git clone git@github.com:mikamai/event-manager-frontend.git
git checkout developInstall dependecies
yarnChoose your destiny!
-
Open a new branch and name it after the Trello card
git checkout -b feature/<branch-name> git push --set-upstream origin feature/<branch-name>
e.g:
[EM-FE-0001] New feature->feature/EM-FE-0001_new_feature -
Commit your changes following AngularJS Git Commit Message Convention (short version -> only use the first line)
-
Push your commits to remote repo
git push
-
Open a
Pull Requestpointing todevelopbranch
-
Checkout
masterbranchgit checkout master git pull
-
Open a new branch and name it after the Trello card
git checkout -b hotfix/<branch-name> git push --set-upstream origin hotfix/<branch-name>
-
Commit changes AngularJS Git Commit Message Convention (short version -> only use the first line)
-
Push your commits to remote repo
git push
-
Open a
Pull Requestpointing tomasterbranch and one pointing todevelop
-
Checkout
masterbranchgit checkout master git pull
-
Checkout
developbranchgit checkout develop git pull
-
Open a new branch and name it after the version to be released
git checkout -b release/<released-version> git push --set-upstream origin release/<released-version>
e.g.
release/v1.1 -
Increase project version using
yarnyarn version --no-git-tag-version [--major | --minor | --patch]
-
Commit version bump
git add package.json git commit -m "chore([major | minor | patch]): Bump version to <new-version>" -
Open a
Pull Requestpointing tomasterbranch and one pointing todevelop