mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-18 16:50:00 +00:00
Update cheatsheets
This commit is contained in:
38
git-restore
Normal file
38
git-restore
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# git restore
|
||||
|
||||
> Restore working tree files. Requires Git version 2.23+.
|
||||
> See also `git checkout` and `git reset`.
|
||||
> More information: <https://git-scm.com/docs/git-restore>.
|
||||
|
||||
- Restore an unstaged file to the version of the current commit (HEAD):
|
||||
|
||||
`git restore {{path/to/file}}`
|
||||
|
||||
- Restore an unstaged file to the version of a specific commit:
|
||||
|
||||
`git restore --source {{commit}} {{path/to/file}}`
|
||||
|
||||
- Discard all unstaged changes to tracked files:
|
||||
|
||||
`git restore :/`
|
||||
|
||||
- Unstage a file:
|
||||
|
||||
`git restore --staged {{path/to/file}}`
|
||||
|
||||
- Unstage all files:
|
||||
|
||||
`git restore --staged :/`
|
||||
|
||||
- Discard all changes to files, both staged and unstaged:
|
||||
|
||||
`git restore --worktree --staged :/`
|
||||
|
||||
- Interactively select sections of files to restore:
|
||||
|
||||
`git restore --patch`
|
||||
Reference in New Issue
Block a user