“Git revertir el último control remoto” Código de respuesta

Git revertir el último control 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

Revertir el último empuje al servidor

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

Git elimina las confirmaciones de la rama después del empuje

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 cómo deshacer un cometometía empujado

git revert <commit_hash>
Good Gorilla

Deshacer el último compromiso empujado

git reset # commitId
# Exemple
git reset 5310517
Cipriano98

Respuestas similares a “Git revertir el último control remoto”

Preguntas similares a “Git revertir el último control remoto”

Más respuestas relacionadas con “Git revertir el último control remoto” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código