“Jak usunąć gałąź na git” Kod odpowiedzi

Jak usunąć gałęznę git cli

# Delete remote branch
git push origin -d remote_branch_name

# Delete local branch
git branch -d local_branch_name

# Force delete if getting merge error
git branch -D local_branch_name
Tofufu

Jak usunąć gałąź na git

// Delete local branch

git branch -d <local_branch_name>


// Delete remote branch

git push origin --delete <remote_branch_name>
Sore Sardine

Usuń gałęznę git

# delete branch locally
git branch -d <branchName>
#example 
git branch -d test
# you add ,commit but not merged and can not delete the branch , use this one
#just use capital D 
git branch -D <branchName> 
#example 
git branch -D test
polyglot orca

Odpowiedzi podobne do “Jak usunąć gałąź na git”

Pytania podobne do “Jak usunąć gałąź na git”

Więcej pokrewnych odpowiedzi na “Jak usunąć gałąź na git” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu