Skip to content

Instantly share code, notes, and snippets.

View ashahba's full-sized avatar
🎯
Focusing

Abolfazl Shahbazi ashahba

🎯
Focusing
  • Portland, OR
View GitHub Profile
@ashahba
ashahba / release.sh
Created March 15, 2019 17:22 — 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