ลบแบรนซ์มาจากท้องถิ่นใน git

รหัสตัวอย่าง

100
0

ลบท้องถิ่นแบรนซ์

// delete branch locally
git branch -d localBranchName

//delete local branch that is unmerged
git branch -D localBranchName

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

ลบแบรนซ์ git

//delete locally
git branch -d branch_name

//delete remotely
//git push <remote_name> :<branch_name>
// ex. git push origin :serverfix
15
0

ลบระยะไกล git แบรนซ์

git push --delete remoteName branchName
2
0

ลบท้องถิ่นและทางไกลแบรนซ์ github

$ git push <remote_name> :<branch_name>
0
0

ลบแบรนซ์ท้องถิ่น git

$ git push -d <remote_name> <branch_name>
$ git branch -d <branch_name>

หน้าคล้ายกัน

คล้ายกันหน้ากับตัวอย่าง

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................