forked from crossjam/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
27 lines (21 loc) · 722 Bytes
/
gitconfig
File metadata and controls
27 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- mode: conf; -*-
# Base gitconfig that uses ssh-agent keys or ssh default lookup
[user]
name = Brian Dennis
email = bmd+github@crossjam.net
# Specific to dotfiles to use a key authorized for my personal github account
# My dotfiles repo is private but useful for consistency across personal and work machines
# .gitconfig.bmdmc has to be updated per machine though
# [includeIf "gitdir:~/dotfiles/.git"]
# path = "~/.gitconfig.bmdmc"
[init]
defaultBranch = main
[core]
excludesfile = "~/.gitignore"
[url "git@github.com:crossjam"]
insteadOf = https://github.com/crossjam
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true