Skip to content

Instantly share code, notes, and snippets.

@imakecodes
Created September 15, 2022 14:49
Show Gist options
  • Save imakecodes/792cf69fc481452c762c414a06ed5d67 to your computer and use it in GitHub Desktop.
Save imakecodes/792cf69fc481452c762c414a06ed5d67 to your computer and use it in GitHub Desktop.
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[advice]
statusHints = false
[user]
name = Michel Wilhelm
email = meu@email.com
[core]
excludesfile = MUDAR_O_PATH_HOME/.gitignore
[alias]
adog = log --all --decorate --oneline --graph
lg = log --oneline --graph --decorate -n20
st = status -b -s
c = checkout
cm = commit -am
p = push
amend = commit --amend -C HEAD
undo = reset --soft HEAD~1
unstage = reset HEAD --
publish = "!git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)"
[url "git@github.com:"]
insteadOf = https://github.com/
[credential]
helper = cache
[init]
defaultBranch = main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment