diff options
author | Christian Segundo | 2023-10-12 14:16:30 +0200 |
---|---|---|
committer | Christian Segundo | 2023-10-12 14:16:30 +0200 |
commit | 97a799c00e31d028f83743419ee9be7f10e41d5a (patch) | |
tree | 95f1328903fda73b6534ad20cf8c40d4e38326e7 /public/git/.gitconfig | |
parent | b5d995f1dd791f5db5eb9ca5bbc2b340f0f38383 (diff) | |
download | dotfiles-97a799c00e31d028f83743419ee9be7f10e41d5a.tar.gz |
Add git
Diffstat (limited to 'public/git/.gitconfig')
-rw-r--r-- | public/git/.gitconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/public/git/.gitconfig b/public/git/.gitconfig new file mode 100644 index 0000000..64e9fd3 --- /dev/null +++ b/public/git/.gitconfig @@ -0,0 +1,24 @@ +[filter "lfs"] + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true +[user] + name = Christian Segundo + email = christian.segundo@cabify.com + signingkey = 0x8B6B1A3CF906CCEC +[commit] + gpgsign = 1 +[core] + excludesfile = ~/.gitignore_global + ;fsmonitor = true + ;untrackedcache = true +[pull] + rebase = false +[push] + autoSetupRemote = true +[init] + templatedir = ~/.git_template + defaultBranch = master +[include] + path = ~/.gitconfig_cabify |