From 69f146288533a2fa9ad407e30da786412ef2fceb Mon Sep 17 00:00:00 2001 From: kjs3 Date: Fri, 27 Dec 2013 12:12:08 -0500 Subject: [PATCH] Specifying ORIGIN on 'git remote update'. --- hubflow-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hubflow-common b/hubflow-common index e27dab882..9205dd519 100644 --- a/hubflow-common +++ b/hubflow-common @@ -354,7 +354,7 @@ hubflow_local_merge_helper() { } hubflow_fetch_latest_changes_from_origin() { - git remote update || die "Unable to get list of latest changes from '$ORIGIN'" + git remote update "$ORIGIN" || die "Unable to get list of latest changes from '$ORIGIN'" git fetch "$ORIGIN" || die "Unable to fetch latest changes from '$ORIGIN'" git fetch --tags || die "Unable to fetch latest tags from '$ORIGIN'" }