Skip to content

mikamai/event-manager-frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

EventManager Frontend

EventManager Web Frontend

Setup

Clone repo and switch to develop branch

git clone git@github.com:mikamai/event-manager-frontend.git

git checkout develop

Install dependecies

yarn

Choose your destiny!

New Feature

  • 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 Request pointing to develop branch

New Hotfix

  • Checkout master branch

    git 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 Request pointing to master branch and one pointing to develop

New Release

  • Checkout master branch

    git checkout master
    
    git pull
  • Checkout develop branch

    git 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 yarn

    yarn 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 Request pointing to master branch and one pointing to develop

About

Event Manager Frontend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published