i am writing script which does git release branch merge to master then develop branch and deletes current branch and creates new branch off of develop branch. which involves 4 steps
- release branch to master
- master to develop
- delete current branch
- create new branch off of develop
how to do in shell script which displays only 4 steps and step status instead of printing whole output in console.
My desired output is
- release branch to master Pass
- master to develop Pass
- delete current branch Pass
- create new branch off of develop Pass
SUCCESS