From: "Ping Yin" <pkufranky@gmail.com>
To: "Junio C Hamano" <gitster@pobox.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 2/5] git-submodule: New subcommand 'summary' (2) - hard work
Date: Sat, 12 Jan 2008 17:48:59 +0800 [thread overview]
Message-ID: <46dff0320801120148r1a760bcdq4b9dcdf31354d9e0@mail.gmail.com> (raw)
In-Reply-To: <7vejcnv3zk.fsf@gitster.siamese.dyndns.org>
On Jan 12, 2008 4:32 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Ping Yin <pkufranky@gmail.com> writes:
>
>
> > + check_dst=t
> > + check_src=t
> > + case $status in
> > + D)
> > + check_dst=
> > + ;;
> > + A)
> > + check_src=
> > + ;;
>
> I'd loosen the above grep (see my comments to your 1/5) and also
> add this:
>
> *)
> continue ;# punt
> ;;
>
> so that the rest of the code won't break when seeing a path that
> was submodule in the HEAD but is a blob in the index.
Right. I thought 'M' should be the default case because I missed the
case 'T' (head blob but index submodule, or the reverse) .
>
> > + esac
> > +
> > + (
> > + errmsg=
> > + unfound_src=
> > + unfound_dst=
> > +
> > + test -z "$check_src" ||
> > + GIT_DIR="$name/.git" git-rev-parse $sha1_src >&/dev/null ||
>
>
> I think you would want to read full 40-char sha1_src and
> sha1_dst with "while read", and keep that full 40-char in these
> variables, and use them when calling rev-parse here.
Hmm, precision is really a problem. However, "git diff --raw" will not
always give full 40-char sha1, instead it will give sha1 with enough
length. So maybe i can use the sha1 from "git diff --raw" ?
>
> If you are checking if that the object exists in the submodule,
> use "rev-parse --verify", which was designed for exactly that
> purpose. If you also want to verify if the object is a commit,
> which may be a good idea anyway, "rev-parse --verify $sha1_src^0".
Yes, --verify is better.
;;
>
> When reporting errors, you would want to give full 40-chars...
>
As said before, enough is ok?
> > + *)
> > + left=
> > + right=
> > + test -n "$check_src" &&
> > + left=$(GIT_DIR="$name/.git" git log --pretty=format:" <%s" \
> > + ${check_dst:+$sha1_dst..}$sha1_src 2>/dev/null)
> > +
> > + test -n "$check_dst" &&
> > + right=$(GIT_DIR="$name/.git" git log --reverse --pretty=format:" >%s" \
> > + ${check_src:+$sha1_src..}$sha1_dst 2>/dev/null)
> > + ;;
> > + esac
> > +
> > + echo "* $name $sha1_src...$sha1_dst:"
>
> While reporting like this, you would want the shortened form,
> perhaps produced your "cut -c1-7".
>
> > + if test -n "$errmsg"
> > + then
> > + echo "$errmsg"
> > + else
> > + test -n "$left" && echo "$left"
> > + test -n "$right" && echo "$right"
> > + fi
> > + echo
> > + ) | sed 's/^/# /'
> > + done
>
> I'd prefer to always have "-e" before the sed expression.
Is it not portable without "-e"?
>
> Any reason why you want separate invocation of sed inside the
> while loop? IOW, why isn't it like this?
>
> git diff --raw |
> while read ...
> do
> ...
> done | sed -e 's/^/# /'
>
Just because i'm stupid. :)
--
Ping Yin
next prev parent reply other threads:[~2008-01-12 9:49 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-12 7:37 [PATCH 0/5] submodule summary support Ping Yin
2008-01-12 7:37 ` [PATCH 1/5] git-submodule: New subcommand 'summary' (1) - code framework Ping Yin
2008-01-12 7:37 ` [PATCH 2/5] git-submodule: New subcommand 'summary' (2) - hard work Ping Yin
2008-01-12 7:37 ` [PATCH 3/5] git-submodule: New subcommand 'summary' (3) - limit summary size Ping Yin
2008-01-12 7:37 ` [PATCH 4/5] git-status: submodule summary support Ping Yin
2008-01-12 7:37 ` [PATCH 5/5] git-status: configurable submodule summary size Ping Yin
2008-01-12 8:36 ` [PATCH 3/5] git-submodule: New subcommand 'summary' (3) - limit " Junio C Hamano
2008-01-12 9:51 ` Ping Yin
2008-01-12 19:17 ` Junio C Hamano
2008-01-13 6:38 ` Ping Yin
2008-01-12 8:32 ` [PATCH 2/5] git-submodule: New subcommand 'summary' (2) - hard work Junio C Hamano
2008-01-12 9:48 ` Ping Yin [this message]
2008-01-12 12:24 ` Ping Yin
2008-01-12 19:21 ` Junio C Hamano
2008-01-12 11:12 ` Ping Yin
2008-01-12 19:25 ` Junio C Hamano
2008-01-13 6:28 ` Ping Yin
2008-01-12 8:18 ` [PATCH 1/5] git-submodule: New subcommand 'summary' (1) - code framework Junio C Hamano
2008-01-12 9:09 ` Ping Yin
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=46dff0320801120148r1a760bcdq4b9dcdf31354d9e0@mail.gmail.com \
--to=pkufranky@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/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).