Skip to content

Instantly share code, notes, and snippets.

@imakecodes
Created March 30, 2022 20:59
Show Gist options
  • Save imakecodes/e40571bd95cc950477c26d0bee06c2cf to your computer and use it in GitHub Desktop.
Save imakecodes/e40571bd95cc950477c26d0bee06c2cf 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 = Nome da Criatura
email = nome.da@criatura.com
[core]
excludesfile = /home/USERNAME/.gitignore
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment