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

분기 자식 삭제

//delete locally
git branch -d branch_name

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

원격 자식 분기 삭제

git push --delete remoteName branchName
2
0

로컬 및 원격 분기 github 삭제

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

지점 로컬 자식 제거

$ 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
..................................................................................................................