Skip to content

Instantly share code, notes, and snippets.

@njames
Forked from AvnerCohen/delete_branches_older_than.sh
Last active January 29, 2024 12:04
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save njames/88425c2771a14c5fe1220c19a16bdac6 to your computer and use it in GitHub Desktop.
Save njames/88425c2771a14c5fe1220c19a16bdac6 to your computer and use it in GitHub Desktop.
Script to delete branches older than 6 months old, ignore local vs remote errors.
#!/bin/sh
ECHO='echo '
for branch in $(git branch -a | sed 's/^\s*//' | sed 's/^remotes\///' | grep -v 'main$\|develop$'); do
if ! ( [[ -f "$branch" ]] || [[ -d "$branch" ]] ) && [[ "$(git log $branch --since "1 month 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
@david-kariuki
Copy link

Will this detect any recent updates to the branches or will it base the age by the date the branch was created?

@vitorhugomattos
Copy link

vitorhugomattos commented May 11, 2023

this will delete based on the latest commit timestamp (note the --since flag). if you want to delete based on branch creation date you should change the flag to --before.

@david-kariuki
Copy link

Great. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment