“Git revert Last Commit Remote” Code-Antworten

Git revert Last Commit Remote

Set the local branch one revision back (HEAD^ means one revision back):
`git reset --hard HEAD^`

Push the changes to origin:
`git push --force`
Harendra

Letzten Drücken zum Server zurückkehren

git reset --hard HEAD@{1}
git push -f
Perro Fiel

Git entfernen Commits aus dem Zweig nach dem Druck

git reset --hard <last_working_commit_id>
So we must not reset to the commit_id that we don't want.

Then sure, we must push to remote branch:

git push --force
Arrogant Addax

Git wie man einen Pushed Commit rückgängig macht

git revert <commit_hash>
Good Gorilla

Last Last Commit drängte

git reset # commitId
# Exemple
git reset 5310517
Cipriano98

Ähnliche Antworten wie “Git revert Last Commit Remote”

Fragen ähnlich wie “Git revert Last Commit Remote”

Weitere verwandte Antworten zu “Git revert Last Commit Remote” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen