“git elimina todas las ramas excepto maestro” Código de respuesta

git elimina todas las ramas excepto maestro

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

Git elimina todas las ramas excepto maestro

// -- 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 Elimine todas las ramas excepto Master Windows

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

Retire todas sus ramas Git locales pero mantenga el maestro

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

cómo eliminar todas las ramas en git excepto maestro

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

Respuestas similares a “git elimina todas las ramas excepto maestro”

Preguntas similares a “git elimina todas las ramas excepto maestro”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código