Git entfernen Sie den Festschub vor dem Schieben
# Removes latest commit from the stash, KEEPS changes
git reset --soft HEAD~
# Removes latest commit from the stash, DELETES changes
git reset --hard HEAD~
Yellowed Yacare