Jak usunąć gałąź master w git

Przykłady kodu

104
0

Usuń gałąź w git

// delete branch locally
git branch -d localBranchName

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

Git delete branch start with

git branch -d $(git branch | grep yourSearchPattern)
0
0

jak usunąć lokalną gałąź master w git

git delete
0
0

Git delete master branch i recreate

git checkout better_branch
git merge --strategy=ours master    # keep the content of this branch, but record a merge
git checkout master
git merge better_branch             # fast-forward master up to the merge

W innych językach

Ta strona jest w innych językach

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