Created
October 9, 2025 10:03
-
-
Save devoto13/0eaf5967f4a82f2c57eb01f85a744daf 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
[core] | |
excludesfile = ~/.gitignore_global | |
ignorecase = false | |
commentchar = ";" | |
[push] | |
default = current | |
followTags = true | |
[rebase] | |
autostash = true | |
autosquash = true | |
[credential] | |
helper = osxkeychain | |
[commit] | |
template = ~/.stCommitMsg | |
[diff] | |
tool = sublimerge | |
[difftool] | |
prompt = false | |
[difftool "sublimerge"] | |
cmd = subl -n --wait \"$REMOTE\" \"$LOCAL\" --command \"sublimerge_diff_views {\\\"left_read_only\\\": true, \\\"right_read_only\\\": true}\" | |
[merge] | |
tool = sublimerge | |
[mergetool] | |
prompt = false | |
keepBackup = false | |
[mergetool "sublimerge"] | |
cmd = subl -n --wait \"$REMOTE\" \"$BASE\" \"$LOCAL\" \"$MERGED\" --command \"sublimerge_diff_views\" | |
trustExitCode = false | |
[user] | |
useConfigOnly = true | |
name = | |
email = | |
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
required = true | |
[pull] | |
ff = only | |
[fetch] | |
prune = true | |
[alias] | |
name = !gitname | |
[init] | |
defaultBranch = main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment