How to Delete a Git Branch

ใน git ปกติแล้วเราต้องการลบ branch สามารถใช้คำสั่งด้านล่างได้เลย

// delete branch locally
git branch -d localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

แต่ถ้าได้ข้อความจากgit บอกว่า the Branch xxxx is not fully merged. เราก็ต้อง -D แทน -d เพื่อเป็นการ force delete
error: The branch 'xxxxxx' is not fully merged.

References:

How to Delete a Git Branch Both Locally and Remotely

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *