“Uncommit the Last Commit” Code-Antworten

Wie kann ich meinen letzten Commit in Git ungewöhnlich machen


git reset --soft HEAD^

git reset HEAD^
//And if you actually want to completely undo it, throwing away all uncommitted changes, resetting everything to the previous commit (as the original question asked):

git reset --hard HEAD^
Precious Partridge

Wie man in Git ungewöhnlich ist

git reset --soft HEAD^
Perfect Pony

Uncommit Local Commit

$ git reset HEAD~2
Hurt Hyena

Uncommit Local Commit

$ git reset HEAD^ 
Xanthous Xenomorph

Uncommit the Last Commit

git reset --soft HEAD^

git reset HEAD^
//And if you actually want to completely undo it, throwing away all uncommitted changes, resetting everything to the previous commit (as the original question asked):

git reset --hard HEAD^
Sagar Khadka

Ähnliche Antworten wie “Uncommit the Last Commit”

Fragen ähnlich wie “Uncommit the Last Commit”

Weitere verwandte Antworten zu “Uncommit the Last Commit” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen