Created
September 15, 2022 14:49
-
-
Save imakecodes/792cf69fc481452c762c414a06ed5d67 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 = Michel Wilhelm | |
email = [email protected] | |
[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 "[email protected]:"] | |
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