Git rejette les modifications locales

Exemples de code

17
0

git rejette les modifications locales

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

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

annuler les modifications non échelonnées git

git checkout -- .
3
0

git réinitialise un fichier

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

git supprime les fichiers non archivés

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

git annule toutes les modifications

git reset --hard
1
0

supprimer les modifications locales 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.

Dans d'autres langues

Cette page est dans d'autres langues

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