Created
March 30, 2022 20:59
-
-
Save imakecodes/e40571bd95cc950477c26d0bee06c2cf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[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 = [email protected] | |
[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 "[email protected]:"] | |
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