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; }