Skip to content

Instantly share code, notes, and snippets.

View RageCage64's full-sized avatar
๐Ÿ˜Ž
always chillin

Braydon Kains RageCage64

๐Ÿ˜Ž
always chillin
View GitHub Profile
@jseed
jseed / gist:5d022570ea52ee09a8f43913214496f1
Last active March 12, 2025 08:52
PowerShell command to delete all branches except master
git checkout master; git branch -D @(git branch | select-string -NotMatch "master" | Foreach {$_.Line.Trim()})