Skip to content

Instantly share code, notes, and snippets.

View gurudath's full-sized avatar
💭
Never Giveup

BN Gurudath gurudath

💭
Never Giveup
View GitHub Profile
@gurudath
gurudath / release.sh
Created July 31, 2019 06:27 — forked from bclinkinbeard/release.sh
Bash script to automate the Git Flow tag/release process
#!/bin/bash
# current Git branch
branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')
# v1.0.0, v1.5.2, etc.
versionLabel=v$1
# establish branch and tag name variables
devBranch=develop