“git eliminar el último comandante empujado” Código de respuesta

Deshacer cometer

# KEEP CHANGES
git reset --soft HEAD~1

# REMOVE CHANGES
git reset --hard HEAD~1
Lively Leopard

Cancelar un compromiso no presionado

git reset --soft HEAD~
Average Joe

Git Eliminar el último compromiso después del empuje

git reset --hard HEAD~1
git push -f <remote> <branch>
Modern Mantis

Git Eliminar el comandante empujado

git reset --hard <last_working_commit_id>

git push --force
QuackAttack69

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 eliminar el último comandante empujado

git reset --hard 'xxxxx'

git clean -f -d

git push -f
Gifted Gentoo

Respuestas similares a “git eliminar el último comandante empujado”

Preguntas similares a “git eliminar el último comandante empujado”

Más respuestas relacionadas con “git eliminar el último comandante empujado” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código