mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 23:01:02 +02:00
3 lines
147 B
Bash
Executable file
3 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
# This script automatically deletes any local branches which have been merged
|
|
git branch --merged | grep -v master | xargs git branch -d
|