Cara Hapus Branch Git
- Categories:
- git
Hapus branch git ada dua cara, hapus hanya di lokal komputer atau secara remote sehingga di repositori tempat kita simpan kode menghapus branch tersebut.
Saat melakukan hapus branch jangan berada pada nama branch yang sedang dihapus dan pindah dulu ke branch lain, misal pindah ke branch main
.
Hapus Branch Lokal Git
Hapus branch lokal komputer git dapat menggunakan opsi git branch -d
dimana opsi -d
merupakan alias dari --delete
. Opsi ini mengharuskan branch sebelum dihapus harus ter-update dahulu dengan remote branch yang ada di repositori kita.
Hapus branch lokal komputer git tanpa peduli status apakah sudah sama dengan remote branch yang ada di repositori kita dapat menggunakan opsi git branch -D
dimana opsi -D
merupakan alias dari --delete --force
.
Hapus Branch Remote Git
Hapus remote branch dapat menggunakan opsi git push -d
. Perintah ini akan membuat remote branch yang ada pada repositori kita, misal di Github, akan terhapus.
Misal nama remote adalah origin
dan nama branch-nya adalah example
, maka perintah lengkapnya adalah sebagai berikut.
- Tags:
- #git
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.