“Git Checkout Commit précédent” Réponses codées

Comment revenir à la commission précédente dans GIT en permanence

# This will destroy any local modifications.
# Don't do it if you have uncommitted work you want to keep.
git reset --hard 0d1d7fc32

# Alternatively, if there's work to keep:
git stash
git reset --hard 0d1d7fc32
git stash pop
# This saves the modifications, then reapplies that patch after resetting.
# You could get merge conflicts, if you've modified things which were
# changed since the commit you reset to.
pirateksh

COMMANDE DE COSE DE GIT

git checkout <commit>
Pushy Pants

RETOUR COMMISSER GIT

git revert <commit hash>
Common Mynah

Git Checkout Commit précédent

git reset --hard HEAD~10
To rollback 10 commits back:
Smoggy Skipper

git tire de la validation précédente

git checkout -b old-state 0d1d7fc32
Yellowed Yacare

Git Checkout Commit précédent

$ git reset --hard <commit_id>
Naimur

Réponses similaires à “Git Checkout Commit précédent”

Questions similaires à “Git Checkout Commit précédent”

Plus de réponses similaires à “Git Checkout Commit précédent” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code