“git hapus semua cabang kecuali master” Kode Jawaban

git hapus semua cabang kecuali master

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

Git hapus semua cabang kecuali master

// -- 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 hapus semua cabang kecuali master windows

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

Hapus semua cabang git lokal Anda tetapi tetap master

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

cara menghapus semua cabang di git kecuali master

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

Jawaban yang mirip dengan “git hapus semua cabang kecuali master”

Pertanyaan yang mirip dengan “git hapus semua cabang kecuali master”

Lebih banyak jawaban terkait untuk “git hapus semua cabang kecuali master” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya