|
@@ -139,6 +139,20 @@ if (( $+commands[colormake] )); then
|
|
alias make="colormake"
|
|
alias make="colormake"
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
+#
|
|
|
|
+# Git Flow stuff
|
|
|
|
+#
|
|
|
|
+git-flow-release() {
|
|
|
|
+ if [[ "${1}" != "" ]]; then
|
|
|
|
+ export GIT_MERGE_AUTOEDIT=no
|
|
|
|
+ git flow release start "${1}" && \
|
|
|
|
+ GIT_MERGE_AUTOEDIT=no git flow release finish -m "${1}" "${1}"
|
|
|
|
+ else
|
|
|
|
+ printf "%s: tag is missing\n" "${0}" >&2
|
|
|
|
+ fi
|
|
|
|
+}
|
|
|
|
+alias gfr="git-flow-release"
|
|
|
|
+
|
|
#
|
|
#
|
|
# Mssh stuff
|
|
# Mssh stuff
|
|
#
|
|
#
|