Skip to content

Instantly share code, notes, and snippets.

View mgibson323's full-sized avatar
๐Ÿ˜

Michael Gibson mgibson323

๐Ÿ˜
View GitHub Profile
@johnpolacek
johnpolacek / .gitconfig
Last active March 8, 2025 22:15
My current .gitconfig aliases
[alias]
recent = "!git for-each-ref --sort=-committerdate refs/heads/ --format='%(committerdate:short) %(refname:short)' | head -n 10"
co = checkout
cob = checkout -b
coo = !git fetch && git checkout
br = branch
brd = branch -d
brD = branch -D
merged = branch --merged
st = status