“Filiais locais limpas git” Respostas de código

Filiais locais limpas git

git branch --merged master | grep -v '^[ *]*master$' | xargs git branch -d
Condemned Capybara

git ramos limpos

git checkout main
git branch -D $(git branch | grep -v 'main') # delete all local but main
git fetch # fetch from origin
git remote prune origin # delete non-existent remote branches
git pull # get to latest on main
qpwo

Respostas semelhantes a “Filiais locais limpas git”

Perguntas semelhantes a “Filiais locais limpas git”

Mais respostas relacionadas para “Filiais locais limpas git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código