“Hapus komit yang terakhir didorong” Kode Jawaban

Batalkan komit yang tidak didorong

git reset --soft HEAD~
Average Joe

git hapus komit terakhir setelah dorongan

git reset --hard HEAD~1
git push -f <remote> <branch>
Modern Mantis

git hapus komit lokal

git reset --hard origin/<branch_name>
Lazy Loris

git hapus dorong komit

git reset --hard <last_working_commit_id>

git push --force
QuackAttack69

git menghapus komit dari cabang setelah dorongan

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

Hapus komit yang terakhir didorong

$ git reset <previous label or sha1>
$ git commit -am "blabla"                    <--- optional
$ git push -f <remote-name> <branch-name>    
Testy Turtle

Jawaban yang mirip dengan “Hapus komit yang terakhir didorong”

Pertanyaan yang mirip dengan “Hapus komit yang terakhir didorong”

Lebih banyak jawaban terkait untuk “Hapus komit yang terakhir didorong” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya