“git hapus komit lokal” Kode Jawaban

git hapus komit lokal

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

hapus komit

git checkout master
git reset --hard e3f1e37
git push --force origin master
# Then to prove it (it won't print any diff)
git diff master..origin/master
Bole

git buang semua komitmen yang tidak dipotong

# Remove ALL commits up to commit hash.
# NB: Make sure these commits have not been pushed.

git reset --hard <commit hash number>
SmokeFrog

Kembalikan komitmen yang tidak diterbitkan

git reset --hard <hash-or-ref>
Drab Duck

Jawaban yang mirip dengan “git hapus komit lokal”

Pertanyaan yang mirip dengan “git hapus komit lokal”

Lebih banyak jawaban terkait untuk “git hapus komit lokal” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya