Delte ทางไกลแบรนซ์

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

55
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
19
0

git ยังไงจะลบแหล่งกำเนิดแบรนซ์

$ git push origin --delete feature/login
4
0

git ลบระยะไกลหน่วยอยู่ในท้องถิ่น git

# Fetch changes from all remotes and locally delete 
# remote deleted branches/tags etc
# --prune will do the job :-;
git fetch --all --prune
3
0

ลบทางไกลแบรนซ์

git branch -r -d remoteBranchName
2
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
..................................................................................................................