Git descartar as alterações locais

Exemplos de código

17
0

git descartar as alterações locais

# Discarding local changes (permanently) to a file:
git checkout -- <file>

# Discard all local changes to all files permanently:
git reset --hard
6
0

desfazer as alterações 'unstaged' git

git checkout -- .
3
0

git reiniciar um ficheiro

git checkout HEAD -- my-file.txt
2
0

git descartar ficheiros 'unstaged'

git stash save --keep-index --include-untracked
2
0

git desfazer todas as alterações

git reset --hard
1
0

remover as alterações locais git

git fetch  # will fetch the latest changes on the remote
git reset --hard origin/master # will set your local branch to match the representation of the remote just pulled down.

Em outros idiomas

Esta página está em outros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................