Git vyřadit místní změny

Příklady kódu

17
0

git vyřadit místní změny

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

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

undo unstaged změny git

git checkout -- .
3
0

git resetovat jeden soubor

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

git zahodí nestálé soubory

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

git zrušit všechny změny

git reset --hard
1
0

odstranit místní změny 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.

V jiných jazycích

Tato stránka je v jiných jazycích

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