From: Junio C Hamano <gitster@pobox.com>
To: Tim Retout <tim@retout.co.uk>
Cc: Git Mailing List <git@vger.kernel.org>
Subject: Re: [PATCH] builtin-reset.c: Extend hard reset error message when using paths.
Date: Mon, 13 Apr 2009 12:51:21 -0700 [thread overview]
Message-ID: <7vr5zwe3ie.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <1239646444-11653-1-git-send-email-tim@retout.co.uk> (Tim Retout's message of "Mon, 13 Apr 2009 19:14:04 +0100")
Tim Retout <tim@retout.co.uk> writes:
> Users who invoke 'git reset --hard <paths>' are probably trying to
> update paths in their working directory. The error message should
> point them in the direction of git-checkout(1).
That is one possibility. Another is:
git reset --hard mester
(and you have ./mester file in the work tree) and in that case the user
definitely didn't want to do any checkout.
I wonder if you can tell these cases apart, and also if this (not just
telling these apart, but what your patch adds) is worth additional
cluttering in the running program. I certainly wouldn't mind addition to
git-reset manual page if new people are often confused between "checking
out paths from the index or from the named commit" and "resetting the HEAD
to a different commit while nuking the index and the work tree state",
though.
> Signed-off-by: Tim Retout <tim@retout.co.uk>
> ---
> builtin-reset.c | 4 ++++
> 1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/builtin-reset.c b/builtin-reset.c
> index c0cb915..885ca9a 100644
> --- a/builtin-reset.c
> +++ b/builtin-reset.c
> @@ -257,6 +257,10 @@ int cmd_reset(int argc, const char **argv, const char *prefix)
> if (i < argc) {
> if (reset_type == MIXED)
> warning("--mixed option is deprecated with paths.");
> + else if (reset_type == HARD)
> + die("Cannot do %s reset with paths.\n"
> + "See git-checkout(1) to update paths in the working tree.",
> + reset_type_names[reset_type]);
> else if (reset_type != NONE)
> die("Cannot do %s reset with paths.",
> reset_type_names[reset_type]);
> --
> 1.6.2.2
next prev parent reply other threads:[~2009-04-13 19:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-13 18:14 [PATCH] builtin-reset.c: Extend hard reset error message when using paths Tim Retout
2009-04-13 19:51 ` Junio C Hamano [this message]
2009-04-13 21:19 ` Tim Retout
2009-04-14 5:35 ` Jeff King
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=7vr5zwe3ie.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=tim@retout.co.uk \
/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).