“git checkout commit anterior” Código de respuesta

Cómo volver a un compromiso anterior en GIT de forma permanente

# 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

Git Checkout Commit

git checkout <commit>
Pushy Pants

Revertir Commit git

git revert <commit hash>
Common Mynah

git checkout commit anterior

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

Git tira de la comisión anterior

git checkout -b old-state 0d1d7fc32
Yellowed Yacare

git checkout commit anterior

$ git reset --hard <commit_id>
Naimur

Respuestas similares a “git checkout commit anterior”

Preguntas similares a “git checkout commit anterior”

Más respuestas relacionadas con “git checkout commit anterior” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código