From 08727ea8bba8c81678e5cf15124ada23ad097bc3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Santi=20B=C3=A9jar?= Date: Mon, 19 Mar 2007 00:16:23 +0100 Subject: [PATCH] git-fetch: Fix single_force in append_fetch_head MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixes the single force (+) when fetched with fetch_per_ref. Also use $LF as separator because IFS is $LF. Signed-off-by: Santi Béjar Signed-off-by: Junio C Hamano --- git-fetch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-fetch.sh b/git-fetch.sh index e21804284..93349330d 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -110,8 +110,8 @@ ls_remote_result=$(git ls-remote $exec "$remote") || append_fetch_head () { flags= - test -n "$verbose" && flags="$flags -v" - test -n "$force" && flags="$flags -f" + test -n "$verbose" && flags="$flags$LF-v" + test -n "$force$single_force" && flags="$flags$LF-f" GIT_REFLOG_ACTION="$GIT_REFLOG_ACTION" \ git-fetch--tool $flags append-fetch-head "$@" } -- 2.11.0