git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] builtin-reset.c: Extend hard reset error message when using paths.
@ 2009-04-13 18:14 Tim Retout
  2009-04-13 19:51 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Tim Retout @ 2009-04-13 18:14 UTC (permalink / raw)
  To: Git Mailing List; +Cc: Tim Retout

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).

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

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-04-14  5:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2009-04-13 21:19   ` Tim Retout
2009-04-14  5:35   ` Jeff King

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).