daffy0208/ai-dev-standards

🧹 Branch Cleanup: 1 merged branches to delete

Open

#38 opened on Jun 1, 2026

View on GitHub
 (0 comments) (0 reactions) (0 assignees)TypeScript (7 forks)auto 404
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

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.

Contributor guide