-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
32 lines (31 loc) · 1002 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
[user]
name = Gordon Wilson
email = gordoncww@gmail.com
[github]
user = gordoncww
token = xxxxxxxxxxxxxxxxxxxxxxxxxXXXXXXXYYYYYYZZZZZZZZZZ2
[alias]
aa = add --all
br = branch
co = checkout
ct = checkout --track
amend = commit --amend
ci = commit --verbose
ca = commit --all --verbose
dc = diff --cached
d = diff --color-words --ignore-all-space
lg = log --all --full-history --graph --pretty=format:'%C(white)%h%Creset%x09%C(yellow)%d%Creset %s %C(green)(%cr) %Creset%C(bold blue)<%an>%Creset'
ri = rebase --interactive
st = status --branch --short
[branch]
autosetuprebase = always # always --rebase on pull
[color]
ui = true # use color when outputing to terminal for all commands that can color
[push]
default = tracking # only push current branch to remote
[interactive]
singlekey = true # dont need to hit enter for one-letter input
[pack]
threads = 0 # autodetect num threads to use for packing repos
[core]
excludesfile = /Users/gordon/.gitignore