“Restablecer Commit Git” Código de respuesta

git deshacer cometer

# Uncommit the changes
git reset --soft HEAD~1

# Completely delete the changes
git reset --hard HEAD~1
garzj

git cancelar Último commit

git reset --soft HEAD~1
Lucky Lapwing

RESTACIÓN DE GIT para comprometerse

# reset to specefic commit
git reset --hard <commit id>

# to go back one step 
git reset --hard HEAD~1

# note: use --soft to keep file changes
Fahim Foysal

Deshacer el último cometer

#this  will preserve changes done to your files
git reset --soft HEAD~1

#this will get rid of the commit and the changes done to the files
$ git reset --hard HEAD~1
 
Old-fashioned Oyster

¿Cómo obtengo el último compromiso?

$ git reset --soft HEAD~1
Brainy Butterfly

Restablecer Commit Git

reset commit
Agreeable Addax

Respuestas similares a “Restablecer Commit Git”

Preguntas similares a “Restablecer Commit Git”

Más respuestas relacionadas con “Restablecer Commit Git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código