summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 02e5ba4)
raw | patch | inline | side by side (parent: 02e5ba4)
author | Jeff King <peff@peff.net> | |
Mon, 31 Dec 2007 07:13:52 +0000 (02:13 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 2 Jan 2008 10:28:54 +0000 (02:28 -0800) |
It makes no sense since there is no working tree. A soft
reset should be fine, though.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
reset should be fine, though.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-reset.c | patch | blob | history | |
t/t7103-reset-bare.sh | [new file with mode: 0755] | patch | blob |
diff --git a/builtin-reset.c b/builtin-reset.c
index 713c2d5346e8dc7e502beffc256bfdcad9da6ad5..10dba60c39d3cf7dafe6d733a4d53977c285a73c 100644 (file)
--- a/builtin-reset.c
+++ b/builtin-reset.c
if (reset_type == NONE)
reset_type = MIXED; /* by default */
+ if (reset_type == HARD && is_bare_repository())
+ die("hard reset makes no sense in a bare repository");
+
/* Soft reset does not touch the index file nor the working tree
* at all, but requires them in a good order. Other resets reset
* the index file to the tree object we are switching to. */
diff --git a/t/t7103-reset-bare.sh b/t/t7103-reset-bare.sh
--- /dev/null
+++ b/t/t7103-reset-bare.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+test_description='git-reset in a bare repository'
+. ./test-lib.sh
+
+test_expect_success 'setup non-bare' '
+ echo one >file &&
+ git add file &&
+ git commit -m one &&
+ echo two >file &&
+ git commit -a -m two
+'
+
+test_expect_success 'setup bare' '
+ git clone --bare . bare.git &&
+ cd bare.git
+'
+
+test_expect_success 'hard reset is not allowed' '
+ ! git reset --hard HEAD^
+'
+
+test_expect_success 'soft reset is allowed' '
+ git reset --soft HEAD^ &&
+ test "`git show --pretty=format:%s | head -n 1`" = "one"
+'
+
+test_done