“Restablecimiento de git” Código de respuesta

origen de reinicio de git

git fetch origin
git reset --hard origin/master
Remember this forever
Jittery Jellyfish

Git Head de reinicio suave

git reset --soft HEAD^
//resets head by 1
Filthy Fish

Restablecimiento de git

# uncommit changes, changes are left staged (index).
git reset --soft

# (default): uncommit + unstage changes, changes are left in working tree.
git reset --mixed

# uncommit + unstage + delete changes, nothing left.
git reset --hard
Joeyeyey

Remoto de restablecimiento de git

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

# remote
git push -f origin master
Felipebros

Restablecimiento de git

git reset --soft HEAD~3
git commit
git push —force-with-lease origin
Grieving Gemsbok

Restablecimiento de git

# Create a new file called `foo.py` and add some code to it

# Commit it to the project history
git add foo.py
git commit -m "Start developing a crazy feature"

# Edit `foo.py` again and change some other tracked files, too

# Commit another snapshot
git commit -a -m "Continue my crazy feature"

# Decide to scrap the feature and remove the associated commits
git reset --hard HEAD~2
sandy_codes_py

Respuestas similares a “Restablecimiento de git”

Preguntas similares a “Restablecimiento de git”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código