Last active
March 4, 2025 17:18
-
-
Save cortelucas/8c7a7f975ef98571e7d7afdf9b9b043c to your computer and use it in GitHub Desktop.
Configurações para o gitconfig global
This file contains 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
[user] | |
name = cortelucas | |
email = [email protected] | |
[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