Forked from antonio/delete_branches_older_than.sh
Last active
September 23, 2024 23:59
-
-
Save AvnerCohen/b8a40c62f8097d8c7b14 to your computer and use it in GitHub Desktop.
Script to delete branches older than 6 months old, ignore local vs remote errors.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ECHO='echo ' | |
for branch in $(git branch -a | sed 's/^\s*//' | sed 's/^remotes\///' | grep -v 'master$'); do | |
if [[ "$(git log $branch --since "6 months ago" | wc -l)" -eq 0 ]]; then | |
if [[ "$DRY_RUN" = "false" ]]; then | |
ECHO="" | |
fi | |
local_branch_name=$(echo "$branch" | sed 's/remotes\/origin\///') | |
$ECHO git branch -d "${local_branch_name}" | |
$ECHO git push origin --delete "${local_branch_name}" | |
fi | |
done |
Author
AvnerCohen
commented
Jun 14, 2021
- Note the "DRY_RUN" argument you need to set it to false to actually delete.
- I see branch names with white spaces, added a minor fix for that.
I like this script but it seems to pick up directories and files ...
ECHO='echo ';
for branch in $(git branch -a | sed 's/^\s*//' | sed 's/^remotes\///' | grep -v 'main$\|develop$'); do
if [[ -f "$branch" ]]; then
$ECHO $branch;
fi
done
I added a directory and file check
ECHO='echo ';
for branch in $(git branch -a | sed 's/^\s*//' | sed 's/^remotes\///' | grep -v 'main$\|develop$'); do
if ! ( [[ -f "$branch" ]] || [[ -d "$branch" ]] ); then
$ECHO $branch;
fi
done
my full script is here ... note I want to exclude main
and develop
https://gist.github.com/njames/88425c2771a14c5fe1220c19a16bdac6
this script is not deleting the branches from remote repo, i ran it's executed completely and then count is same on remote branch
my take, in ruby https://gist.github.com/jjb/5d3d5d4127e77d79452d3619fa8a3c1b
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment