Last active
May 7, 2021 21:25
-
-
Save adamblank/569b7130728beb0a3bcba2301f8fa71a to your computer and use it in GitHub Desktop.
Git Aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A place for my git aliases | |
git config --global alias.lop 'log --pretty=oneline' | |
git config --global alias.pur 'pull --rebase' | |
git config --global alias.s 'status' | |
git config --global alias.c 'commit' | |
git config --global alias.cm 'commit -m' | |
git config --global alias.cam 'commit -a -m' | |
git config --global alias.fix 'commit --amend' | |
git config --global alias.fixup 'commit --fixup :/' | |
git config --global alias.stats 'shortlog -s -n' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment