learnbyexample to [email protected]English • 8 months agoImproving shell workflows with fzfseb.jambor.devmessage-square7fedilinkarrow-up147arrow-down13
arrow-up144arrow-down1external-linkImproving shell workflows with fzfseb.jambor.devlearnbyexample to [email protected]English • 8 months agomessage-square7fedilink
minus-squareDeebsterlinkfedilink10•8 months agofunction delete-branches() { git branch | grep --invert-match '\*' | cut -c 3- | fzf --multi --preview="git log {} --" | xargs --no-run-if-empty git branch --delete --force } This is really slick.
function delete-branches() { git branch | grep --invert-match '\*' | cut -c 3- | fzf --multi --preview="git log {} --" | xargs --no-run-if-empty git branch --delete --force }
This is really slick.