-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig.wix
101 lines (82 loc) · 2.03 KB
/
.gitconfig.wix
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
89
90
91
92
93
94
95
96
97
98
99
100
101
[core]
editor = e
pager = delta
filemode = false
autocrlf = false
ignorecase = false
[delta]
syntax-theme = Solarized (light)
line-numbers = true
[interactive]
diffFilter = delta --color-only
[user]
name = Vytautas Jakutis
email = jakutis@wix.com
signingkey = 36A21E5702AE64A0
[alias]
fin = "!sh -c 'git stash -k && git ci -va && git pull --rebase && git p && git stash pop'"
a = add -p
co = checkout
st = status
ci = commit
w = whatchanged
pom = pull origin master
changes = log --oneline --reverse
graph = log --graph --oneline --decorate
summary = log --oneline
staged = diff --cached
d = difftool
lg = log --color --graph --pretty=format:'%Cred%h%Creset %s %Cgreen(%cr, %ar) %C(bold blue)<%an>%Creset' --abbrev-commit
t = log --tags --show-notes --simplify-by-decoration --pretty='format:%ai %h %d %s'
l = log --graph --decorate --oneline --stat --all
b = branch -a
s = stash list
authors = shortlog -sne
history = log --follow --patch --abbrev-commit
showtool = "!sh -c 'if [ -z $1 ]; then REVISION=HEAD; else REVISION=$1; fi; git difftool $REVISION~ $REVISION' -"
pick = "!f() { git log -100 --oneline --color $1 | fzf -m --ansi | awk '{print $1}'; }; f"
[web]
browser = opera
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = magenta
old = red
new = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[diff]
tool = meld
colorMoved = default
[difftool]
prompt = false
[merge]
tool = meld
[push]
default = matching
[pull]
rebase = true
[http]
sslVerify = true
[url "https://"]
insteadOf = git://
[credential]
helper = cache
[log]
date = local
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true