“Git elimina el cometido desaudado” Código de respuesta

Git elimina el cometido desaudado

# Removes latest commit from the stash, KEEPS changes
git reset --soft HEAD~

# Removes latest commit from the stash, DELETES changes
git reset --hard HEAD~
Yellowed Yacare

Git descarte todos los commits sin hacer-

# Remove ALL commits up to commit hash.
# NB: Make sure these commits have not been pushed.

git reset --hard <commit hash number>
SmokeFrog

Respuestas similares a “Git elimina el cometido desaudado”

Preguntas similares a “Git elimina el cometido desaudado”

Más respuestas relacionadas con “Git elimina el cometido desaudado” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código