mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Use `git create-branch` instead of `git checkout -b` in: git-bug git-chore git-feature git-refactor Since `git-finish` uses `git-delete-branch` (which expects the branch to have been pushed to origin) we should use `git-create-branch` to create it.
42 lines
895 B
Bash
Executable file
42 lines
895 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
branch_prefix=feature
|
|
declare -a argv
|
|
while test $# != 0
|
|
do
|
|
case $1 in
|
|
-a|--alias )
|
|
if [[ -n $2 ]]
|
|
then
|
|
shift # shift -a|-alias
|
|
branch_prefix=$1
|
|
else
|
|
argv+=($1) # treat tail '-a' as <name>
|
|
fi
|
|
;;
|
|
* )
|
|
argv+=($1)
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
concatargs(){
|
|
str=$(IFS='-'; echo "$*")
|
|
branch="$branch_prefix"/$str
|
|
}
|
|
|
|
if test "${argv[0]}" = "finish"; then
|
|
test -z "${argv[1]}" && echo "$branch_prefix" "<name> required." 1>&2 && exit 1
|
|
branch="$branch_prefix"/"${argv[1]}"
|
|
git merge --no-ff "$branch" && git delete-branch "$branch"
|
|
else
|
|
test -z "${argv[0]}" && echo "$branch_prefix" "<name> required." 1>&2 && exit 1
|
|
if test -n "${argv[1]}"; then
|
|
concatargs "${argv[@]}"
|
|
else
|
|
branch="$branch_prefix"/"${argv[0]}"
|
|
fi
|
|
git create-branch $branch
|
|
fi
|