Agradeceríamos tu apoyo para compartir nuestros ensayos acerca de las ciencias informáticas.
Ejemplo 1: git revertir confirmación
# Reset the index and working tree to the desired tree
# Ensure you have no uncommitted changes that you want to keep
git reset --hard 56e05fced
# Move the branch pointer back to the previous HEAD
git reset --soft [email protected]1
git commit -m "Reverting to the state of the project at f414f31"
Ejemplo 2: cómo volver a la confirmación anterior en git de forma permanente
# This will destroy any local modifications.
# Don't do it if you have uncommitted work you want to keep.
git reset --hard 0d1d7fc32
# Alternatively, if there's work to keep:
git stash
git reset --hard 0d1d7fc32
git stash pop
# This saves the modifications, then reapplies that patch after resetting.
# You could get merge conflicts, if you've modified things which were
# changed since the commit you reset to.
Ejemplo 3: git vuelve a la confirmación anterior
git checkout 12feg3435 #commit ID
Ejemplo 4: git pull de la confirmación anterior
# This will detach your HEAD, that is, leave you with no branch checked out:
git checkout 0d1d7fc32
Ejemplo 5: git pull de la confirmación anterior
git checkout -b old-state 0d1d7fc32
Sección de Reseñas y Valoraciones
Te invitamos a defender nuestro quehacer dejando un comentario o dejando una puntuación te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)