daffy0208/ai-dev-standards
ð§¹ Branch Cleanup: 1 merged branches to delete
ãªãŒãã³
#38 opened on 2026/06/01
automatedgood first issuemaintenance
Repository metrics
- Stars
-  (32 åã®ã¹ã¿ãŒ)
- PR merge metrics
- Â (PR metrics pending)
説æ
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.