-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
41 lines (41 loc) · 1005 Bytes
/
gitconfig
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[user]
name = Abhay Saxena
email = ark3@email.com
[color]
diff = auto
status = auto
branch = auto
[core]
editor = emacsclient
excludesfile = ~/.config/git/ignore
[init]
defaultBranch = main
[merge]
tool = meld
[difftool]
prompt = false
[diff]
tool = meld
algorithm = histogram
[filter "lfs"]
# These are added by the Github app in some order
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[gui]
# Run using `git gui`
fontui = -family \".SF NS Text\" -size 13 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family \"Fira Code\" -size 12 -weight normal -slant roman -underline 0 -overstrike 0
[branch]
autosetupmerge = always # New local branch tracks remote branch
autosetuprebase = always # Pull will rebase, not merge
[push]
default = current
[fetch]
prune = true
[url "git@ark3.ssh.github.com:"]
pushInsteadOf = https://github.com/
insteadOf = https://github.com/
[protocol]
version = 2