Mercurial > public > develkit
view scripts/ssdt-hgflow-init.sh @ 342:9791f84cfc67
Add github init40 gradle plugin script
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Fri, 09 Jun 2023 14:28:13 -0400 |
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