Skip to content

Instantly share code, notes, and snippets.

@michaelcaxias
Last active August 19, 2022 15:28
Show Gist options
  • Save michaelcaxias/7c9a5f3f6c6e3520b0b146e793a6e44a to your computer and use it in GitHub Desktop.
Save michaelcaxias/7c9a5f3f6c6e3520b0b146e793a6e44a to your computer and use it in GitHub Desktop.
Git Config
[user]
name = Michael Caxias
email = michaelcaxias.dev@gmail.com
[core]
editor = code --wait
[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)%s - %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