Horje
git delete branches not on remote Code Example
git delete local branches not on remote
git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done
delete local branches not on remote
git branch -vv | grep ': gone]'|  grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -D
git delete branches that aren't on remote
git fetch --all --prune
git delete branches not on remote
git branch --merged >/tmp/merged-branches && \
  vi /tmp/merged-branches && xargs git branch -d </tmp/merged-branches




Shell

Related
download influxdb for windows Code Example download influxdb for windows Code Example
ZSH Configuration File (.zshrc) Code Example ZSH Configuration File (.zshrc) Code Example
kill 5432 port Code Example kill 5432 port Code Example
how to remove git commit Code Example how to remove git commit Code Example
get info about an audio file ffmpeg Code Example get info about an audio file ffmpeg Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10