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 April 30, 2024 06:00
My current .gitconfig aliases
[alias]
co = checkout
cob = checkout -b
coo = !git fetch && git checkout
br = branch
brd = branch -d
brD = branch -D
merged = branch --merged
st = status
aa = add -A .