“Git supprimer la branche unique” Réponses codées

Git supprimer la branche unique

// -- Clear all branches except Master Branch --
git branch -D $(git branch | grep -v 'master')
// This will clear all your branches you have on local that you have 
// not pushed to your repository. eg: IF, you created a branch that was, 
// not pushed it will remain along with amster. 
// But the others will be cleaned.

// -- Delete a single branch
git branch -D branch-name
13Garth

Git - supprimer la branche spécifique

$ git branch -D <branch> 
Michael Futral

Réponses similaires à “Git supprimer la branche unique”

Questions similaires à “Git supprimer la branche unique”

Plus de réponses similaires à “Git supprimer la branche unique” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code