Delete All Local Branches Except main
A handy one-liner to clean up all your local Git branches except main. It uses -D to force-delete each branch, even if it hasn’t been merged—so be careful. If you want a safer version…
Limited availability — accepting new projects starting August 2026.
A companion to the Bash UUID rename snippet, this AppleScript is meant to be dropped into a "Run AppleScript" action inside the macOS Shortcuts app (or Automator as a Quick Action). It accepts the files passed in as input, generates a random lowercase UUID for each one, and renames the file in place while preserving the original extension — handy as a right-click service in Finder.
on run {input, parameters}
repeat with f in input
set posixPath to POSIX path of f
set ext to do shell script "basename " & quoted form of posixPath & " | sed 's/.*\\.//'"
set uuid to do shell script "uuidgen | tr '[:upper:]' '[:lower:]'"
set newName to uuid & "." & ext
tell application "Finder"
set name of (POSIX file posixPath as alias) to newName
end tell
end repeat
return input
end run
Set the shortcut’s input to "Files" and, if you want it in Finder’s context menu, enable "Use as Quick Action" → "Services menu" in the shortcut’s details.
A handy one-liner to clean up all your local Git branches except main. It uses -D to force-delete each branch, even if it hasn’t been merged—so be careful. If you want a safer version…
If brew services start httpd succeeds but brew services list shows an error with root as the user, you likely have a leftover system LaunchDaemon from a previous sudo brew services invocation…
When working with feature branches, it’s easy for your local repository to accumulate branches that were already deleted on the remote. This snippet safely removes all local branches whose…