Re: Suprising error message from "git clone"
From: Matthieu Moy <hidden>
Date: 2016-06-15 22:43:30
Junio C Hamano [off-list ref] writes:
Untested but something like this should suffice...
Jest tested, it works fine.
By the way, could you possibly drop Mail-Followup-To: please?
Err, what's the problem with it? I don't wish to receive duplicate, and I ask your mailer not to do so. I don't care too much if the header is not honnored, but what you have to do is just to followup without bothering about it.
quoted hunk
git-clone.sh | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-)diff --git a/git-clone.sh b/git-clone.sh index e4a9ac4..18003ab 100755 --- a/git-clone.sh +++ b/git-clone.sh@@ -99,6 +99,7 @@ origin_override= use_separate_remote=t depth= no_progress= +local_explicitly_asked_for= test -t 1 || no_progress=--no-progress while case "$#,$1" in@@ -109,6 +110,7 @@ while *,--na|*,--nak|*,--nake|*,--naked|\ *,-b|*,--b|*,--ba|*,--bar|*,--bare) bare=yes ;; *,-l|*,--l|*,--lo|*,--loc|*,--loca|*,--local) + local_explicitly_asked_for=yes use_local_hardlink=yes ;; *,--no-h|*,--no-ha|*,--no-har|*,--no-hard|*,--no-hardl|\ *,--no-hardli|*,--no-hardlin|*,--no-hardlink|*,--no-hardlinks)@@ -281,7 +283,8 @@ yes) then rm -f "$GIT_DIR/objects/sample" l=l - else + elif test -n "$local_explicitly_asked_for" + then echo >&2 "Warning: -l asked but cannot hardlink to $repo" fi fi &&
-- Matthieu