Git 에서 분기를 제거하는 방법

코드 예제

108
0

git 에서 분기 삭제

// delete branch locally
git branch -d localBranchName

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

분기 자식 제거

// 1. delete branch locally
git branch -d localBranchName

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

// 3. DONE!
4
0

github 삭제 지점 원격

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

로컬 및 원격 분기 github 삭제

git branch -d branch_namegit branch -D branch_name

다른 언어로

이 페이지는 다른 언어로되어 있습니다

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