“Git Discard All Changes Command” Réponses codées

git rejeter tous les changements

git clean -df
git checkout -- .
Mushy Monkey

Jeter tous les changements

git stash save --keep-index --include-untracked
Kasmin Nicko

Git de la ligne de commande modifie les modifications

git clean -dxn .  # dry-run to inspect the list of files-to-be-removed
git clean -dxf .  # REMOVE ignored/untracked files (in the current directory)
git checkout -- . # ERASE changes in tracked files (in the current directory)
Prickly Polecat

Git Discard All Changes Command

git reset –hard		# Revert uncommitted changes in index
git clean -fxd		# Remove newly created files that not in index
Prickly Polecat

Réponses similaires à “Git Discard All Changes Command”

Questions similaires à “Git Discard All Changes Command”

Plus de réponses similaires à “Git Discard All Changes Command” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code