“arquivo de restauração do git” Respostas de código

Redefinir um arquivo

git checkout HEAD -- my-file.txt
Eranot

arquivo de restauração do git

git restore --source=c5f567 file1/to/restore file2/to/restore # restore files to how they were in the commit with the hash listed in --source
Arrogant Ape

O que o Git Restore faz

The "restore" command helps to unstage or even discard uncommitted
local changes.

One the one hand, the command can be used to undo the effects of
git add and unstage changes you have previously added to the Staging
Area.

On the other hand, the restore command can also be used to discard local
changes in a file, thereby restoring its last committed state.
Agreeable Ape

Restauração Git

git restore "PATH"
Insert Grepper Name Here

Respostas semelhantes a “arquivo de restauração do git”

Perguntas semelhantes a “arquivo de restauração do git”

Mais respostas relacionadas para “arquivo de restauração do git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código