-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
46 lines (46 loc) · 1.21 KB
/
.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
45
46
[user]
name = Firas Abuzaid
email = [email protected]
[alias]
co = checkout
br = branch
lm = ls-files -u
diff = diff --patience
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
please = push --force-with-lease
commend = commit --amend --no-edit
grok = log --graph --abbrev-commit --decorate --all --format=format:\"%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(dim white) - %an%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n %C(white)%s%C(reset)\"
st = status --short --branch
stash-all = stash --all
stash-untracked = stash --include-untracked
stash-keep-index = stash --keep-index
[color]
ui = true
[core]
autocrlf = input
pager = diff-so-fancy | less --tabs=4 -RFX
[merge]
conflictstyle = diff3
ff = only
[rerere]
enabled = true
[push]
default = simple
[pull]
ff = only
[interactive]
diffFilter = diff-so-fancy --patch
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = 34 bold
newHighlight = 34 bold 22
[color "diff"]
meta = yellow
frag = magenta bold
commit = yellow bold
old = red bold
new = 34 bold
whitespace = red reverse
[rebase]
updateRefs = true