daffy0208/ai-dev-standards
View on GitHub🧹 Branch Cleanup: 1 merged branches to delete
Open
#38 opened on Jun 1, 2026
automatedgood first issuemaintenance
Repository metrics
- Stars
- (32 stars)
- PR merge metrics
- (PR metrics pending)
Description
Branch Cleanup Reminder
This repository has 1 merged branches that can be safely deleted.
Merged Branches
How to Clean Up
Option 1: Use the cleanup script (Recommended)
bash scripts/cleanup-merged-branches.sh
Option 2: Enable automatic deletion
- Go to Repository Settings → Pull Requests
- Check ☑️ "Automatically delete head branches"
- See REPO-CLEANUP-GUIDE.md for details
Option 3: Manual cleanup
git branch -r --merged origin/main | \
grep -v 'HEAD\|main' | \
sed 's/origin\///' | \
xargs -I {} git push origin --delete {}
Why Clean Up?
✅ Keeps repository organized ✅ Reduces clutter in branch list ✅ Follows Git best practices ✅ Improves repository navigation
This issue was automatically generated by the Branch Cleanup workflow. After cleaning up, close this issue.