Last active
June 22, 2022 02:39
-
-
Save Eronheit/cdb8cd6fa7c2215af65b0196f568df05 to your computer and use it in GitHub Desktop.
Settings git config
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 = Eronheit | |
email = aquinoeronaldo@gmail.com | |
[core] | |
#Define o VSCode como editor padrão | |
editor = code --wait | |
[push] | |
#Quando é realizado o push, só será enviado ao servidor as tags anotadas | |
#Padrão determinado pelo próprio git | |
followTags = true | |
[alias] | |
#adiciona todos os arquivos e realiza o commit | |
c = !git add --all && git commit -m | |
#git status em short-format | |
s = !git status -s | |
#customiza o log de commits | |
l = !git log --pretty=format:'%C(blue)%h%C(red)%d %C(white)%s - %C(cyan)%cn, %C(green)%cr' | |
#adiciona todos os arquivos da staged area ao commit anterior | |
amend = !git commit --amend --no-edit | |
#adiciona todos os arquivos(inclusive non staged) ao commit anterior | |
amend_all = !git add --all && git commit --amend --no-edit | |
#verifica a quantidade de determinado tipo de commit | |
count = !git shortlog -s --grep | |
#Desfaz o último commit | |
undo = !git reset HEAD~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment