-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
65 lines (51 loc) · 1.09 KB
/
gitconfig
File metadata and controls
65 lines (51 loc) · 1.09 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
[user]
email = myke@mykestubbs.com
name = Myke Stubbs
[push]
default = upstream
[merge]
ff = only
[rebase]
autosquash = true
[rerere]
#enabled = true
enabled = false
[diff]
renames = true
conflictstyle = patience
[core]
editor = vim
[alias]
st = status
di = diff
co = checkout
ci = commit
chp = cherry-pick
br = branch
sta = stash
wc = log --raw
whatchanged = low --raw
lg = log --graph --date-order -C -M --pretty=format:\"%Cblue%h%Creset %Cgreen[%ad]%Creset (%an) %Cgreen%d%Creset %s\" --all --date=short
#lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%an, %cr)%Creset' --abbrev-commit --date=relative --topo-order
[apply]
whitespace = nowarn
[format]
pretty = %Cblue%h%Creset %Cgreen[%ar]%Creset (%an) %s
numbered = auto
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[init]
defaultBranch = main