“Git supprimer toutes les branches sauf maître” Réponses codées

git supprimer toutes les branches sauf maître

git branch | grep -v "master" | xargs git branch -D
Hungry Hedgehog

Git supprimer toutes les branches sauf maître

// -- 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 toutes les branches à l'exception des fenêtres principales

git branch | %{ $_.Trim() } | ?{ $_ -ne 'master' } | %{ git branch -D $_ }
Itchy Impala

Retirez toutes vos succursales Git locales mais gardez le maître

git branch | grep -v “master” | xargs git branch -D
CL

Comment supprimer toutes les branches de Git sauf maître

$ git branch | grep -v '^*' | xargs git branch -D
Successful Snail

Réponses similaires à “Git supprimer toutes les branches sauf maître”

Questions similaires à “Git supprimer toutes les branches sauf maître”

Plus de réponses similaires à “Git supprimer toutes les branches sauf maître” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code