Skip to content

Commit 4c2941a

Browse files
committed
Merge branch 'es/restore-staged-from-head-by-default'
"git restore --staged --worktree" now defaults to take the contents out of "HEAD", instead of erring out. * es/restore-staged-from-head-by-default: restore: default to HEAD when combining --staged and --worktree
2 parents 6d4bf58 + 088018e commit 4c2941a

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

Documentation/git-restore.txt

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ The command can also be used to restore the content in the index with
2222
`--staged`, or restore both the working tree and the index with
2323
`--staged --worktree`.
2424

25-
By default, the restore sources for working tree and the index are the
26-
index and `HEAD` respectively. `--source` could be used to specify a
27-
commit as the restore source.
25+
By default, if `--staged` is given, the contents are restored from `HEAD`,
26+
otherwise from the index. Use `--source` to restore from a different commit.
2827

2928
See "Reset, restore and revert" in linkgit:git[1] for the differences
3029
between the three commands.
@@ -39,10 +38,8 @@ OPTIONS
3938
tree. It is common to specify the source tree by naming a
4039
commit, branch or tag associated with it.
4140
+
42-
If not specified, the default restore source for the working tree is
43-
the index, and the default restore source for the index is
44-
`HEAD`. When both `--staged` and `--worktree` are specified,
45-
`--source` must also be specified.
41+
If not specified, the contents are restored from `HEAD` if `--staged` is
42+
given, otherwise from the index.
4643

4744
-p::
4845
--patch::

builtin/checkout.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1609,10 +1609,10 @@ static int checkout_main(int argc, const char **argv, const char *prefix,
16091609
if (opts->checkout_index < 0 || opts->checkout_worktree < 0)
16101610
BUG("these flags should be non-negative by now");
16111611
/*
1612-
* convenient shortcut: "git restore --staged" equals
1613-
* "git restore --staged --source HEAD"
1612+
* convenient shortcut: "git restore --staged [--worktree]" equals
1613+
* "git restore --staged [--worktree] --source HEAD"
16141614
*/
1615-
if (!opts->from_treeish && opts->checkout_index && !opts->checkout_worktree)
1615+
if (!opts->from_treeish && opts->checkout_index)
16161616
opts->from_treeish = "HEAD";
16171617

16181618
/*

t/t2070-restore.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,17 @@ test_expect_success 'restore --staged uses HEAD as source' '
6969
test_cmp expected actual
7070
'
7171

72+
test_expect_success 'restore --worktree --staged uses HEAD as source' '
73+
test_when_finished git reset --hard &&
74+
git show HEAD:./first.t >expected &&
75+
echo dirty >>first.t &&
76+
git add first.t &&
77+
git restore --worktree --staged first.t &&
78+
git show :./first.t >actual &&
79+
test_cmp expected actual &&
80+
test_cmp expected first.t
81+
'
82+
7283
test_expect_success 'restore --ignore-unmerged ignores unmerged entries' '
7384
git init unmerged &&
7485
(

0 commit comments

Comments
 (0)