Skip to content

Instantly share code, notes, and snippets.

@nickgrim
Created May 29, 2015 10:33
Show Gist options
  • Select an option

  • Save nickgrim/8e00785d677a9126c2eb to your computer and use it in GitHub Desktop.

Select an option

Save nickgrim/8e00785d677a9126c2eb to your computer and use it in GitHub Desktop.
git config -l | grep alias
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