“Git Delete Pushed Commit” Kod odpowiedzi

Anuluj zobowiązanie, które nie zostało zepchnięte

git reset --soft HEAD~
Average Joe

Git Delete Pushed Commit

git reset --hard <last_working_commit_id>

git push --force
QuackAttack69

git usuń zobowiązania z gałęzi po pchaniu

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 Delete Pushed Commit

git reset --hard your local branch to remove changes from working tree and index, 
git push --force (or git push --force-with-lease) your revised local branch to the remote

check the full answer from here 
https://stackoverflow.com/questions/3293531/how-to-permanently-remove-few-commits-from-remote-branch
MahmoudNoor

Usuń popchnięty zatwierdzenie

# delete the last commit
$git reset –hard HEAD~
Real Raven

git Usuń ostatnie popchnięte zatwierdzenie

git reset --hard 'xxxxx'

git clean -f -d

git push -f
Gifted Gentoo

Odpowiedzi podobne do “Git Delete Pushed Commit”

Pytania podobne do “Git Delete Pushed Commit”

Więcej pokrewnych odpowiedzi na “Git Delete Pushed Commit” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu