···11-#!/bin/bash
22-33-git fetch --prune
44-55-# What is this big guy doin?
66-# 1. Exclude the currently checked-out branch
77-# 2. Trim leading and trailing whitespace from each line
88-# 3. Exclude the 'master' and 'main' branches from the list
99-# 4. Delete each branch listed, one at a time
1010-git branch --merged | grep -v '\*' | sed 's/^ *//;s/ *$//' | grep -v -E '^(master|main)$' | xargs -n 1 git branch -d
-5
config/fish/config.fish
···11-nvm use 24
22-33-if status is-interactive
44- echo "\(^0^)ノ"
55-end