-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
71 lines (71 loc) · 1.36 KB
/
Copy pathgitconfig
File metadata and controls
71 lines (71 loc) · 1.36 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
[core]
editor = vim
autocrlf = input
pager = less
[user]
email = vijaylulla@gmail.com
name = Vijay Lulla
signingkey = A64CB348F0B6836F
[alias]
ap = add --patch
br = branch -vv
brr = branch -vva
ci = commit
co = checkout
conf = config --show-origin --list
di = diff
f = !git ls-files | grep -i
gr = grep -Ii
graph = log --all --pretty=format:\"%C(yellow bold)%h%Creset | %C(green bold)%ad%Creset %s\" --graph --date=short
grep = grep -Ii
hist = log --pretty=format:\"%C(yellow bold)%h%Creset | %C(green bold)%ad%Creset %s\" --graph --date=short
la = !git config --list | grep alias
rl = reflog
st = status -sb
[init]
defaultBranch = main
[credential]
helper = cache --timeout=18000
[commit]
gpgSign = true
verbose = true
[color]
ui = auto
[format]
pretty = format:"%Cgreen%h%Creset%x09\"%an\"%x09%C(yellow bold)%as%Creset%x09%C(auto)%d%Creset » %s"
[pull]
## rebase = true
ff = only
[merge]
## ff = false
tool = vimdiff
conflictstyle = zdiff3
[mergetool]
prompt = false
[diff]
tool = vimdiff
algorithm = histogram
[difftool]
tool = vimdiff
[branch]
sort = -committerdate
[grep]
patternType = perl
[rebase]
autosquash = true
autoStash = true
updateRefs = true
[tag]
sort = version:refname
[fetch]
prune = true
pruneTags = true
all = true
[rerere]
enabled = true
autoupdate = true
[column]
ui = auto
[push]
autoSetupRemote = true
followTags = true