daffy0208/ai-dev-standards
🧹 Branch Cleanup: 1 merged branches to delete
Aperta
#38 aperta il 1 giu 2026
automatedgood first issuemaintenance
Metriche repository
- Star
- (32 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
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.