Skip to content

Instantly share code, notes, and snippets.

@cortelucas
Created February 28, 2024 11:00
Show Gist options
  • Save cortelucas/8c7a7f975ef98571e7d7afdf9b9b043c to your computer and use it in GitHub Desktop.
Save cortelucas/8c7a7f975ef98571e7d7afdf9b9b043c to your computer and use it in GitHub Desktop.
Configurações para o gitconfig global
[user]
name = Lucas dos Santos Corte
email = corte1994.lc@gmail.com
[core]
editor = code
[init]
defaultBranch = main
[alias]
s = !git status -s
c = !git add . && git commit -m
amend = !git add . && git commit --amend --no-edit
l = !git log --pretty=format:'%C(blue)%h%C(red)%d %C(white)%s %C(cyan)[ %cn ] %C(green)%cr'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment