-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
45 lines (42 loc) · 1.01 KB
/
Copy pathgitconfig
File metadata and controls
45 lines (42 loc) · 1.01 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
[alias]
# List aliases
la = "!git config -l | grep alias | cut -c 7-"
# Nice, colorful graph visualization
lg = log --decorate --oneline --graph --branches --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold blue)(%ar) %C(bold yellow)%d%C(reset) %C(green)%s%C(reset) %C(dim green)- %an%C(reset)'
logdog = log --decorate --oneline --graph
st = status
ci = commit
[color]
ui = true
status = true
branch = true
diff = true
[core]
pager = less -R
preloadindex = true
[mergetool "fugitive"]
cmd = vim -f -c \"Gvdiff\" \"$MERGED\"
[mergetool]
keepBackup = false
[merge]
tool = fugitive
[push]
default = simple
[init]
templatedir = ~/.git_template
[grep]
lineNumber = true
[user]
email = karan@evolutioniq.com
name = karan-evoiq
[push]
default = simple
[http]
sslVerify = false
[credential]
helper = osxkeychain
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true