Created
May 29, 2015 10:33
-
-
Save nickgrim/8e00785d677a9126c2eb to your computer and use it in GitHub Desktop.
git config -l | grep alias
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
| alias.st=status | |
| alias.ff=merge --ff-only | |
| alias.no-ff=merge --no-ff | |
| alias.last=log -1 HEAD | |
| alias.tags=for-each-ref --sort='*authordate' --format='%(refname:short): %(subject)' refs/tags | |
| alias.changelog=log --pretty=format:' * %s' --topo-order --reverse --no-merges | |
| alias.ignore=update-index --skip-worktree | |
| alias.ignored=!git ls-files -v | egrep ^S | |
| alias.unignore=update-index --no-skip-worktree |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment