Mercurial > public > develkit
view scripts/ssdt-hgflow-init.sh @ 217:49a220a1bde0
DEP-11: allow keywords to calculate release version based on current branch
author | smith@nwoca.org |
---|---|
date | Wed, 29 Jun 2016 19:47:31 +0100 |
parents | f200b931ea9d |
children |
line wrap: on
line source
#!/bin/sh # # hg flow init for SSDT repositories # if [ -f .hgflow ] then echo ".hgflow already exists. Do not re-initialize!" exit 0 fi set -e set -x die () { echo "$1" return 1 } # Enable hg flow with SSDT conventions. # variances from hgflow's default: # master stream: [default] production # develop stream: [develop] default cat > .hgflow << EOF [branchname] master = production develop = default feature = feature/ release = release/ hotfix = hotfix/ support = support/ version_prefix = "" EOF hg flow init -f