“Git kehrt zum letzten Commit zurück” Code-Antworten

Git revert Commit

# 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 HEAD@{1}

git commit -m "Reverting to the state of the project at f414f31"
Disturbed Duck

zurückkehren, um sich in Git zu verpflichten

git reset --hard HEAD
Wicked Wolf

Git kehrt zum letzten Commit zurück

git log
    commit 101: bad commit    # Latest commit. This would be called 'HEAD'.
    commit 100: good commit   # Second to last commit. This is the one we want.
To restore everything back to the way it was prior to the last commit, we need to reset to the commit before HEAD:

git reset --soft HEAD^     # Use --soft if you want to keep your changes
git reset --hard HEAD^     # Use --hard if you don't care about keeping the changes you made
Clear Copperhead

Wie kann man zum letzten Git -Commit zurückkehren

git checkout . #This will get rid of all uncommited change
BuhtanDingDing

Wie man zurückkommt, um sich in Git anzumelden

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

Ähnliche Antworten wie “Git kehrt zum letzten Commit zurück”

Fragen ähnlich wie “Git kehrt zum letzten Commit zurück”

Weitere verwandte Antworten zu “Git kehrt zum letzten Commit zurück” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen