From cf0375b4f9cb95606f55f8f24d83e502d4f3a994 Mon Sep 17 00:00:00 2001 From: Hui Yiqun Date: Thu, 22 Dec 2016 17:17:27 +0800 Subject: [PATCH] disable git from prompt user credential See: https://github.com/blog/1957-git-2-3-has-been-released --- weave.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/weave.sh b/weave.sh index cd80d55..2916c62 100755 --- a/weave.sh +++ b/weave.sh @@ -10,6 +10,8 @@ IGNORED_REPO=( "weave/tests" # this is a private repo ) +export GIT_TERMINAL_PROMPT=0 + function contains() { for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done return 1