-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
44 lines (44 loc) · 987 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
42
43
44
[user]
email = [email protected]
name = Santosh Kumar
[push]
default = current
[color]
ui = auto
[core]
editor = nvim
[diff]
tool = nvim -d
[alias]
ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi"
l = log --oneline --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
ls = status
commit = commit -v
clone = clone --depth 50
pushall = "!git remote | xargs -L1 git push --all"
g = grep --break --heading --line-number
clean = clean -d
[http]
cookiefile = /home/sntshk/.gitcookies
postBuffer = 524288000
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[difftool]
prompt = false
[grep]
extendRegexp = true
lineNumber = true
[clean]
requireForce = false
[merge]
tool = vimdiff
conflictstyle = diff3
[mergetool]
prompt = false
[remote "origin"]
prune = true
[init]
defaultBranch = main