“git reverter Último comprometimento remoto” Respostas de código

git reverter Último comprometimento remoto

Set the local branch one revision back (HEAD^ means one revision back):
`git reset --hard HEAD^`

Push the changes to origin:
`git push --force`
Harendra

reverta o último empurrão para o servidor

git reset --hard HEAD@{1}
git push -f
Perro Fiel

Remova com compromissos do ramo após push

git reset --hard <last_working_commit_id>
So we must not reset to the commit_id that we don't want.

Then sure, we must push to remote branch:

git push --force
Arrogant Addax

git como desfazer um compromisso empurrado

git revert <commit_hash>
Good Gorilla

Desfazer o último commit empurrado

git reset # commitId
# Exemple
git reset 5310517
Cipriano98

Respostas semelhantes a “git reverter Último comprometimento remoto”

Perguntas semelhantes a “git reverter Último comprometimento remoto”

Mais respostas relacionadas para “git reverter Último comprometimento remoto” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código