“Wie kann man dauerhaft wieder zu früheren Lit in Git zurückkehren” Code-Antworten

Wie kann man dauerhaft wieder zu früheren Lit in Git zurückkehren

# 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.
pirateksh

Wie man zurückkommt, um sich in Git anzumelden

git revert --no-commit 0766c053..HEAD
git commit
Creepy Copperhead

Ähnliche Antworten wie “Wie kann man dauerhaft wieder zu früheren Lit in Git zurückkehren”

Fragen ähnlich wie “Wie kann man dauerhaft wieder zu früheren Lit in Git zurückkehren”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen