-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
72 lines (72 loc) · 1.42 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[user]
name = Jais Cheema
[core]
editor = nvim
autocrlf = input
whitespace = trailing-space,space-before-tab
excludesfile = ~/.gitignore
pager = less -+$LESS -FRX
quotepath = false
[color]
ui = auto
branch = auto
status = auto
diff = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
[color "status"]
added = yellow
changed = green
untracked = cyan
[merge]
tool = opendiff
[mergetool]
keepBackup = false
prompt = false
[push]
default = tracking
recurseSubmodules = check
autoSetupRemote = true
[diff]
tool = opendiff
color-words =
compactionHeuristic = true
[difftool]
prompt = false
[credential]
helper = osxkeychain
[credential "https://github.com"]
username = jaischeema
[gui]
fontdiff = -family Consolas -size 11 -weight normal -slant roman -underline 0 -overstrike 0
[tig]
line-graphics = "utf-8"
mouse = true
refresh-mode = auto
[tig "bind"]
status = + !git commit --amend
status = C !git commit --verbose
status = X <git commit --verbose
[help]
autoCorrect = 20
[rerere]
enabled = true
[diff "exif"]
textconv = exiftool
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[include]
path = config_private
[rebase]
autoStash = true
[alias]
bc = "!f() { git switch -c `whoami`/`date +\"%Y%m%d\"`/$1; }; f"
[init]
defaultBranch = main