add a config setting for prefix

This commit is contained in:
Justin Dugger 2020-05-12 20:06:10 -07:00
parent db3389a3cc
commit e8ee36733f

View file

@ -1,6 +1,11 @@
#!/usr/bin/env bash
branch_prefix=feature
branch_prefix=$(git config --get git-extras.feature.prefix)
if [ -z "$branch_prefix" ]; then
branch_prefix="feature"
fi
merge_mode="--no-ff"
declare -a argv
while test $# != 0