Skip to content

Instantly share code, notes, and snippets.

@euperinotti
Created November 23, 2023 21:20
Show Gist options
  • Save euperinotti/9a3a783cf18dbee7cc9754d0d37bee7a to your computer and use it in GitHub Desktop.
Save euperinotti/9a3a783cf18dbee7cc9754d0d37bee7a to your computer and use it in GitHub Desktop.
My Git Config
[core]
editor = code --wait
[user]
name = Guilherme Perinotti
email = guilherme9115@hotmail.com
editor = code
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[alias]
s = !git status -s
c = !git add --all && git commit -m
l = !git log --pretty=format:'%C(cyan) %h %C(green)%d %C(white)%s - %cn, %C(green)%cr'
p = !git push
dev-b = !git branch dev && git checkout dev
main-b = !git checkout main
m = !git merge dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment