git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git restore --staged --worktree does not restore the index (Git 2.24.1)
@ 2019-12-16 10:51 Henré Botha
  2019-12-16 11:57 ` Phillip Wood
  0 siblings, 1 reply; 2+ messages in thread
From: Henré Botha @ 2019-12-16 10:51 UTC (permalink / raw)
  To: git

git help restore says:

    The command can also be used to restore the content in the index
with --staged, or restore both the working tree and the index with
--staged --worktree.

However, this doesn't seem to work as advertised:

    $ mkdir foo; cd foo; git init
    $ touch a b; git add a b && git commit -m "Initial commit"
    $ echo "Foo" > a; echo "Bar" > b
    $ git add a
    $ git status --short
    M  a
     M b
    $ git restore --staged --worktree .
    $ git status --short
    M  a

I'm not sure whether I expect 'a' to be empty at the end of this
sequence, but I definitely expect it not to contain staged changes.

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

end of thread, other threads:[~2019-12-16 11:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-16 10:51 git restore --staged --worktree does not restore the index (Git 2.24.1) Henré Botha
2019-12-16 11:57 ` Phillip Wood

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