Created
March 13, 2023 12:09
-
-
Save Gabriel-Alves-Cunha/83fa1197fb554f9402547ad6e7eb6f7f to your computer and use it in GitHub Desktop.
My git configuration
This file contains 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
[user] | |
name = Gabriel Alves Cunha | |
email = [email protected] | |
[core] | |
pager = delta | |
[includeIf "gitdir:~/Documents/VSCode/work/"] # include for all .git projects under work/ | |
path = ~/Documents/VSCode/work/.gitconfig.work | |
[includeIf "gitdir:~/Documents/VSCode/personal/"] # include for all .git projects under personal/ | |
path = ~/Documents/VSCode/personal/.gitconfig.personal | |
[alias] | |
lg1 = log -p --stat -n 1 # show last commit diff | |
c = checkout | |
[color] | |
ui = true | |
[interactive] | |
diffFilter = delta --color-only | |
[delta] | |
line-number = true | |
side-by-side = true | |
navigate = true | |
light = false | |
[merge] | |
conflictStyle = diff3 | |
tool = flatpack run org.gnome.meld | |
[diff] | |
colorMoved = default | |
[credential "https://github.com"] | |
helper = !/usr/bin/gh auth git-credential | |
[credential "https://gist.github.com"] | |
helper = !/usr/bin/gh auth git-credential | |
[push] | |
autoSetupRemote = true | |
[filter "lfs"] | |
process = git-lfs filter-process | |
required = true | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment