mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01: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
|