“Cómo eliminar el último empuje Github” Código de respuesta

GitHub cancelar el último empuje

# to undo a git push
git push -f origin HEAD^:master

# to get to previous commit (preserves working tree)
git reset --soft HEAD

# to get back to previous commit (you'll lose working tree)
git reset --hard HEAD^
Lioruby

Cómo eliminar el último empuje Github

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

Cómo eliminar el último empuje Github

git reset <previous label or sha1>
git commit -am "blabla"
git push -f <remote-name> <branch-name>
Ill Iguana

Cómo eliminar el último empuje Github

# to undo a git push
git push -f origin HEAD^:master

# to get to previous commit (preserves working tree)
gitgit push -f reset --soft HEAD

# to get back to previous commit (you'll lose working tree)
git reset --hard HEAD^
Peter Ezzat

Respuestas similares a “Cómo eliminar el último empuje Github”

Preguntas similares a “Cómo eliminar el último empuje Github”

Más respuestas relacionadas con “Cómo eliminar el último empuje Github” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código