-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
66 lines (53 loc) · 1.05 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[user]
name = Zameer Manji
email = [email protected]
useConfigOnly = true
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
st = status
ci = commit -v
co = checkout
d = diff
dc = diff --cached
amend = commit --amend
wip = commit -m "WIP"
lg = log --graph --pretty=format:'%Cred%h%Creset - %Cblue%an:%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
root = rev-parse --show-toplevel
[core]
excludesfile = ~/.gitignore_global
whitespace = trailing-space,space-before-tab
pager = delta
[delta]
line-numbers = true
side-by-side = false
[github]
user = zmanji
[diff]
mnemonicprefix = true
; Detect renames as well as copies
renames = copies
algorithm = patience
colorMoved = default
[merge]
stat = true
conflictStyle = diff3
ff = only
[status]
showUntrackedFiles = all
[rebase]
autostash = true
[rerere]
enabled = true
[fetch]
prune = true
[init]
defaultBranch = main