“Как удалить ветвь на git” Ответ

Как удалить ветвь 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

Как удалить ветвь на git

// Delete local branch

git branch -d <local_branch_name>


// Delete remote branch

git push origin --delete <remote_branch_name>
Sore Sardine

Удалить филиал 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

Ответы похожие на “Как удалить ветвь на git”

Вопросы похожие на “Как удалить ветвь на git”

Больше похожих ответов на “Как удалить ветвь на git” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования