“Supprimer une branche git” Réponses codées

git supprimer la succursale locale

# 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 la branche

# deleting a local branch
$ git branch -d <branch_name>
$ git branch -D <branch_name> # forced

# deleting a remote branch
$ git push <remote_name> --delete <branch_name>
Joeyeyey

Git Delete Branch

git branch -D <branch name>
cadot.eu

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

Git Delete Branch

git branch -D branch_name_to_delete
#forces deletion of branch named
Michael Futral

Réponses similaires à “Supprimer une branche git”

Questions similaires à “Supprimer une branche git”

Plus de réponses similaires à “Supprimer une branche git” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code