Skip to content

Commit 806e5c8

Browse files
committed
Merge branch 'jk/maint-1.6.5-reset-hard' into maint-1.6.5
* jk/maint-1.6.5-reset-hard: reset: unbreak hard resets with GIT_WORK_TREE
2 parents 91d23be + cd0f0f6 commit 806e5c8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

builtin-reset.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,10 +286,8 @@ int cmd_reset(int argc, const char **argv, const char *prefix)
286286
if (reset_type == NONE)
287287
reset_type = MIXED; /* by default */
288288

289-
if ((reset_type == HARD || reset_type == MERGE)
290-
&& !is_inside_work_tree())
291-
die("%s reset requires a work tree",
292-
reset_type_names[reset_type]);
289+
if (reset_type == HARD || reset_type == MERGE)
290+
setup_work_tree();
293291

294292
/* Soft reset does not touch the index file nor the working tree
295293
* at all, but requires them in a good order. Other resets reset

t/t7103-reset-bare.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ test_expect_success 'soft reset is ok' '
2929
(cd .git && git reset --soft)
3030
'
3131

32+
test_expect_success 'hard reset works with GIT_WORK_TREE' '
33+
mkdir worktree &&
34+
GIT_WORK_TREE=$PWD/worktree GIT_DIR=$PWD/.git git reset --hard &&
35+
test_cmp file worktree/file
36+
'
37+
3238
test_expect_success 'setup bare' '
3339
git clone --bare . bare.git &&
3440
cd bare.git

0 commit comments

Comments
 (0)