-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
33 lines (33 loc) · 791 Bytes
/
gitconfig
File metadata and controls
33 lines (33 loc) · 791 Bytes
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
[user]
name = Dylan Jennings
email = dylan@dt.net.nz
[core]
excludesfile = ~/.gitignore
[alias]
st = status -sb
ci = commit
br = branch
co = checkout
ft = fetch
rb = rebase
df = diff --color-words
dc = diff --cached
lp = log -p --abbrev-commit --color-words
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
ls = log --stat --abbrev-commit
l = log --oneline --abbrev-commit
lg = log --abbrev-commit --decorate
ds = diff --stat
unstage = reset HEAD
assume = update-index --assume-unchanged
unassume = update-index --no-assume-unchanged
assumed = "!git ls-files -v | grep ^h | cut -c 3-"
[branch]
autosetuprebase = always
[color]
ui = true
[pull]
rebase = true
[push]
default = simple