commit | 350e7159f1b1e709bd71751f4c76f191884d098e | [log] [tgz] |
---|---|---|
author | Benedikt Böhm <bb@xnull.de> | 周二 1月 26 13:05:05 2010 +0100 |
committer | Benedikt Böhm <bb@xnull.de> | 周二 1月 26 13:05:05 2010 +0100 |
tree | 693ebd860b996d586b13887e8361ce11d90fc8a9 | |
parent | 4a864fbc090c482c7c17fc304745867b2f89254b [diff] [blame] |
make origin configurable
diff --git a/git-flow b/git-flow index 0adac5c..283c779 100755 --- a/git-flow +++ b/git-flow
@@ -21,6 +21,7 @@ export GITFLOW_DIR=$(dirname "$0") export MASTER_BRANCH=$(git config --get gitflow.branch.master || echo master) export DEVELOP_BRANCH=$(git config --get gitflow.branch.develop || echo develop) +export ORIGIN=$(git config --get gitflow.origin || echo origin) warn() { echo "$@" >&2; } die() { warn "$@"; exit 1; }