Skip to content

Instantly share code, notes, and snippets.

@AdaltonLeite
Last active July 5, 2020 23:28
Show Gist options
  • Save AdaltonLeite/82093ce2838c865a33970ca899631158 to your computer and use it in GitHub Desktop.
Save AdaltonLeite/82093ce2838c865a33970ca899631158 to your computer and use it in GitHub Desktop.
// Custom git config
[user]
name = xxx
email = [email protected]
[core]
editor = code
[alias]
c = !git add --all && git commit -m
s = !git status -s
l = !git log --pretty=format:'%C(blue)%h%C(red)%d %C(white) - %C(cyan)%cn, %C(green)%cr'
amend = !git add --all && git commit --amend --no-edit
count = !git shortlog -s --grep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment