DevOps Interview DropAdvanced TierScenario+50 XP on read
Your repository has hundreds of branches, many already merged into main. What would you change?
Core Summary
Deleting merged branches is easy and worth automating, but it's the symptom. The real disease is branches living long enough to diverge, which shows up as painful merges and untested integration risk. Fix PR size and review speed first, and watch for squash-merged branches that `--merged` can't even see.
Hints
Hint 1: Merged branches are clutter; long-lived branches are risk
Hint 2: Automate deletion on merge so it never accumulates again
Hint 3: Ask why branches are open for weeks
Reported in interviews at Google, Shopify