“Cómo deshacer un comisión” Código de respuesta

Deshacer cometer

# KEEP CHANGES
git reset --soft HEAD~1

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

git deshacer cometer

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

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

git deshacer el último comandante

# Undo last commit.
# --soft flag makes sure that the changes in undone revisions are preserved.
# You'll find the changes as uncommitted local modifications in your working copy.
git reset --soft HEAD~1

# If you don't want to keep these changes, simply use the --hard flag.
# This will completely remove the changes.
git reset --hard HEAD~1
Yingfufu

git deshacer el último comandante

$ git reset --soft HEAD~1
Brainy Butterfly

Cómo deshacer un comisión

$ git reset --soft HEAD~1
Inexpensive Ibex

Revertir la confirmación local

$ git reset --hard HEAD~1
Busy Boar

Respuestas similares a “Cómo deshacer un comisión”

Preguntas similares a “Cómo deshacer un comisión”

Más respuestas relacionadas con “Cómo deshacer un comisión” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código