GIT-RESTORE(1) | Git Manual | GIT-RESTORE(1) |
git-restore - Restore working tree files
git restore [<options>] [--source=<tree>] [--staged] [--worktree] [--] <pathspec>... git restore [<options>] [--source=<tree>] [--staged] [--worktree] --pathspec-from-file=<file> [--pathspec-file-nul] git restore (-p|--patch) [<options>] [--source=<tree>] [--staged] [--worktree] [--] [<pathspec>...]
Restore specified paths in the working tree with some contents from a restore source. If a path is tracked but does not exist in the restore source, it will be removed to match the source.
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.
By default, if --staged is given, the contents are restored from HEAD, otherwise from the index. Use --source to restore from a different commit.
See "Reset, restore and revert" in git(1) for the differences between the three commands.
THIS COMMAND IS EXPERIMENTAL. THE BEHAVIOR MAY CHANGE.
-s <tree>, --source=<tree>
If not specified, the contents are restored from HEAD if --staged is given, otherwise from the index.
As a special case, you may use "A...B" as a shortcut for the merge base of A and B if there is exactly one merge base. You can leave out at most one of A and B, in which case it defaults to HEAD.
-p, --patch
Note that --patch can accept no pathspec and will prompt to restore all modified paths.
-W, --worktree, -S, --staged
-q, --quiet
--progress, --no-progress
--ours, --theirs
Note that during git rebase and git pull --rebase, ours and theirs may appear swapped. See the explanation of the same options in git-checkout(1) for details.
-m, --merge
--conflict=<style>
--ignore-unmerged
--ignore-skip-worktree-bits
--recurse-submodules, --no-recurse-submodules
--overlay, --no-overlay
--pathspec-from-file=<file>
--pathspec-file-nul
--
<pathspec>...
For more details, see the pathspec entry in gitglossary(7).
The following sequence switches to the master branch, reverts the Makefile to two revisions back, deletes hello.c by mistake, and gets it back from the index.
$ git switch master $ git restore --source master~2 Makefile (1) $ rm -f hello.c $ git restore hello.c (2)
1. take a file out of another commit
2. restore hello.c from the index
If you want to restore all C source files to match the version in the index, you can say
$ git restore '*.c'
Note the quotes around *.c. The file hello.c will also be restored, even though it is no longer in the working tree, because the file globbing is used to match entries in the index (not in the working tree by the shell).
To restore all files in the current directory
$ git restore .
or to restore all working tree files with top pathspec magic (see gitglossary(7))
$ git restore :/
To restore a file in the index to match the version in HEAD (this is the same as using git-reset(1))
$ git restore --staged hello.c
or you can restore both the index and the working tree (this the same as using git-checkout(1))
$ git restore --source=HEAD --staged --worktree hello.c
or the short form which is more practical but less readable:
$ git restore -s@ -SW hello.c
Part of the git(1) suite
02/22/2023 | Git 2.30.2 |