“Remoto de restablecimiento de git” Código de respuesta

Restablecer a Git a remoto

git fetch origin
git reset --hard origin/master
Wild Weevil

Remoto de restablecimiento de git

# local
git reset <commit-hash>
# or
git reset --hard <commit-hash>

# remote
git push -f origin master
Felipebros

git restablece la cabeza para cometer un control remoto

 git reset --hard <commit-hash> #Please double check your commit hash
 git push -f origin master # this will force update and remove commits after this one
Kirk-Patrick Brown

Respuestas similares a “Remoto de restablecimiento de git”

Preguntas similares a “Remoto de restablecimiento de git”

Más respuestas relacionadas con “Remoto de restablecimiento de git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código