“Confira do checkout do git anterior” Respostas de código

Como voltar ao compromisso anterior em Git permanentemente

# 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

Commiti de checkout do git

git checkout <commit>
Pushy Pants

reverter commit git

git revert <commit hash>
Common Mynah

Confira do checkout do git anterior

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

git pux

git checkout -b old-state 0d1d7fc32
Yellowed Yacare

Confira do checkout do git anterior

$ git reset --hard <commit_id>
Naimur

Respostas semelhantes a “Confira do checkout do git anterior”

Perguntas semelhantes a “Confira do checkout do git anterior”

Mais respostas relacionadas para “Confira do checkout do git anterior” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código