-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
41 lines (41 loc) · 986 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
[user]
email = [email protected]
name = Joseph Earl
[push]
default = simple
autoSetupRemote = true
[alias]
co = checkout
st = status
br = branch
ci = commit
pu = pull
ps = push
ls = log --pretty=format:\"%C(green bold)%h%C(red bold)%d\\ %Creset%s%C(cyan bold)\\ [%cn]\" --decorate
ll = log --pretty=format:\"%C(green bold)%h%C(red bold)%d\\ %Creset%s%C(cyan bold)\\ [%cn]\" --decorate --numstat
ld = log --pretty=format:\"%C(green bold)%h\\ %C(yellow bold)%ad%C(red bold)%d\\ %Creset%s%C(cyan bold)\\ [%cn]\" --decorate --date=relative
ds = diff --staged
unstage = reset HEAD --
discard = checkout --
last = show HEAD
[color]
ui = auto
[color "branch"]
current = green bold reverse
local = normal
remote = white
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = green bold
changed = red bold
untracked = white
[credential]
helper = osxkeychain
[pull]
ff = only
[init]
defaultBranch = main