Git: Hapus Cabang di Lokal dan Remote

// Delete branch locally
% git branch -D <branch-name>

// Delete branch remotely
% git push origin --delete <branch-name>
Sore Sardine