-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
88 lines (71 loc) · 1.82 KB
/
gitconfig
File metadata and controls
88 lines (71 loc) · 1.82 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[alias]
me = "!f() { branch=$(git rev-parse --abbrev-ref HEAD) && git checkout $1 && git merge $branch; }; f"
sy = "!f() { branch=$(git rev-parse --abbrev-ref HEAD) && git checkout master && git pull --all -p && git checkout $branch; }; f"
[credential]
helper = store
[core]
editor = vim
excludesFile = ~/.gitignore
pager = delta
compression = 9
preloadindex = true
whitespace = error
[user]
name = Siddhanta
email = 66236925+siddhantac@users.noreply.github.com
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[status]
branch = true
showStash = true
showUntrackedFiles = all # show files in untracked directories
[branch]
sort = -committerdate
[tag]
sort = -taggerdate
[pull]
rebase = true
[log]
abbrevCommit = true # short commits
graphColors = blue,yellow,cyan,magenta,green,red
[push]
default = simple # pushes the current branch to its upstream branch, but only if they have the same name
autoSetupRemote = true
followTags = true
[pager]
branch = false
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[interactive]
diffFilter = delta --color-only
[delta]
#side-by-side = true
navigate = true # use n and N to move between diff sections
light = false # set to true if you're in a terminal w/ a light background color (e.g. the default macOS terminal)
[merge]
conflictstyle = zdiff3
[diff]
colorMoved = default
algorithm = histogram
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[rerere]
enabled = true