git-restore: add page (#3247)

This commit is contained in:
Starbeamrainbowlabs
2019-08-23 18:22:38 +01:00
committed by Marco Bonelli
parent 69b65ed360
commit 22dc13a408

View File

@@ -0,0 +1,17 @@
# git restore
> Restore working tree files. Requires git version 2.23+.
> See also `git checkout`.
> More information: <https://git-scm.com/docs/git-restore/>.
- Restore a deleted file from the contents of the current commit (HEAD):
`git restore {{path/to/file}}`
- Restore a file to a version from a different commit:
`git restore --source {{commit}} {{path/to/file}}`
- Undo any uncommitted changes to tracked files, reverting to the current HEAD:
`git restore .`