From: Pavel Roskin <proski@gnu.org>
To: Petr Baudis <pasky@suse.cz>, git <git@vger.kernel.org>
Subject: [PATCH] Improve can_hardlink diagnostics, remove suggest_hardlink
Date: Tue, 23 Aug 2005 12:23:58 -0400 [thread overview]
Message-ID: <1124814238.11038.6.camel@dv> (raw)
Hello!
suggest_hardlink is write-only in cg-pull - remove it. can_hardlink
should not be shown to the user as is (it's either "l" or empty) - we
should output something meaningful instead.
Signed-off-by: Pavel Roskin <proski@gnu.org>
diff --git a/cg-pull b/cg-pull
--- a/cg-pull
+++ b/cg-pull
@@ -207,7 +207,6 @@ fetch_local()
cp_flags_l="-vdpR"
if [ "$1" = "-u" ]; then
cp_flags_l="$cp_flags_l -fu$can_hardlink"
- suggest_hardlink=
shift
fi
@@ -293,12 +292,16 @@ else
symlinked=
is_same_repo "$_git_objects" "$uri/objects" && symlinked=1
- # See if we can hardlink and drop "l" if not.
+ # See if we can hardlink and add "-l" to cp flags.
can_hardlink=
sample_file=$(find $uri -type f -print | head -n 1)
rm -f $_git/.,,lntest
- ln "$sample_file" "$_git/.,,lntest" 2>/dev/null && can_hardlink=l
- echo $can_hardlink
+ if cp -fl "$sample_file" "$_git/.,,lntest" 2>/dev/null; then
+ can_hardlink=l
+ echo "Using hard links"
+ else
+ echo "Hard links don't work - using copy"
+ fi
rm -f $_git/.,,lntest
fi
--
Regards,
Pavel Roskin
next reply other threads:[~2005-08-23 16:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-23 16:23 Pavel Roskin [this message]
2005-09-12 0:14 ` [PATCH] Improve can_hardlink diagnostics, remove suggest_hardlink Petr Baudis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1124814238.11038.6.camel@dv \
--to=proski@gnu.org \
--cc=git@vger.kernel.org \
--cc=pasky@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).