“Comment supprimer la branche sur git” Réponses codées

comment supprimer la branche 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

Comment supprimer la branche sur git

// Delete local branch

git branch -d <local_branch_name>


// Delete remote branch

git push origin --delete <remote_branch_name>
Sore Sardine

Supprimer une branche 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

Réponses similaires à “Comment supprimer la branche sur git”

Questions similaires à “Comment supprimer la branche sur git”

Plus de réponses similaires à “Comment supprimer la branche sur git” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code