“Git Usuń pojedynczą gałąź” Kod odpowiedzi

Git Usuń pojedynczą gałąź

// -- 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 - usuń określoną gałęzie

$ git branch -D <branch> 
Michael Futral

Odpowiedzi podobne do “Git Usuń pojedynczą gałąź”

Pytania podobne do “Git Usuń pojedynczą gałąź”

Więcej pokrewnych odpowiedzi na “Git Usuń pojedynczą gałąź” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu