-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
44 lines (42 loc) · 936 Bytes
/
.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
[user]
email = [email protected]
name = Andrew Malcolmson
[push]
default = simple
autoSetupRemote = true
[core]
editor = vi
whitespace = off
pager = less -r
[advice]
statusuoption = false
[color]
ui = true
[alias]
graph = log --all --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset'
g = grep --extended-regexp --break --heading --line-number --ignore-case
# Colours: normal, black, red, green, yellow, blue, magenta, cyan, or white
# Effects: bold, dim, ul (underline), blink, and reverse
[color "diff"]
meta = magenta bold
frag = cyan
old = red
new = green
[color "status"]
added = green bold
changed = yellow bold
untracked = red bold
[grep]
break = true
heading = true
lineNumber = true
[status]
submoduleSummary = true
showUntrackedFiles = no
[diff]
submodule = log
[pull]
rebase = false
# ff = only
[init]
defaultBranch = main