-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
41 lines (34 loc) · 862 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
[core]
autocrlf = input
[pretty]
ol = %Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset
[alias]
st = status --short --branch --untracked-files
ci = commit
br = branch
co = checkout
df = diff
lg = log --graph --pretty=ol --date=relative
who = shortlog -s --
h = help
fix = commit --amend --no-edit
med = commit --amend --only
whatis = show -s --pretty=ol --date=relative
aliases = !git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /'
ff = merge --ff-only @{upstream}
m = merge --no-ff
rh = reset --hard
index = diff --staged
[user]
name = secwall
email = [email protected]
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[push]
default = upstream
[rerere]
enabled = 1