mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
add a config setting for prefix
This commit is contained in:
parent
db3389a3cc
commit
e8ee36733f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue