“como excluir o ramo no git” Respostas de código

como excluir o ramo 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

como excluir o ramo no git

// Delete local branch

git branch -d <local_branch_name>


// Delete remote branch

git push origin --delete <remote_branch_name>
Sore Sardine

Excluir um ramo 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

Respostas semelhantes a “como excluir o ramo no git”

Perguntas semelhantes a “como excluir o ramo no git”

Mais respostas relacionadas para “como excluir o ramo no git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código