Skip to content

Instantly share code, notes, and snippets.

View michaellperry's full-sized avatar

Michael L Perry michaellperry

View GitHub Profile
@michaellperry
michaellperry / GitAliases.sh
Last active August 5, 2023 17:37 — forked from trayburn/GitAliases.sh
Tim Rayburn's GIT Aliases
git config --global alias.a 'add -A'
git config --global alias.b 'branch'
git config --global alias.c 'checkout'
git config --global alias.cb 'checkout -b'
git config --global alias.d 'diff'
git config --global alias.f 'fetch'
git config --global alias.l 'log --pretty=oneline --abbrev-commit'
git config --global alias.r 'rebase --interactive HEAD~10'
git config --global alias.s '-p status'