penx / devenv

Scripts to set up development environment
0 stars 2 forks source link

SH scripts #50

Closed penx closed 1 month ago

penx commented 4 years ago
#!/bin/sh
git fetch -p &&
for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); 
    do git branch -D $branch;
done

Find a secure way to sync these