Skip to content

How to release worshipsongs

crunchersaspire edited this page Nov 24, 2016 · 4 revisions
  • Go to project root directory.
  • Execute below command
    git checkout stable
    git pull
  • Ensure that no uncommitted changes in stable branch. If any changes push to respective repository
  • Merge changes from master
   git merge master
  • Change version name to respective release version(e.g 1.0.0-rc1) in build.gradle
  • If it final release you must increment version code by one(if version code is 3, changed to 4).
  • Push the changes
      git push
  • Update bundle database

    Go to terminal and navigate to project root directory. Execute below command

      ./bundle-db.sh
  • Create tag
     git tag -a <vx.x.x> -m"<message>"
  • Push tag
      git push origin --tags
  • To list tags
      git tag -l

NOTE: Do not merge anything from stable to master

    Conflicts during merge
    git fetch origin develop
    git checkout feature/***
    git merge FETCH_HEAD
    git commit
    git push origin HEAD
Clone this wiki locally