#!/usr/bin/env bash
## Show merged branches.
## Source: git-extras

git branch --no-color --merged | grep -v "\*" | grep -v $(git_extra_default_branch) | tr -d ' '
