-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
33 lines (29 loc) · 837 Bytes
/
gitconfig
File metadata and controls
33 lines (29 loc) · 837 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 = Agnes Chang
email = kradeki@gmail.com
[core]
editor = emacs -nw
excludesfile = /Users/agneschang/.gitignore
[color]
ui = true
diff = auto
[alias]
br = branch
co = checkout
ci = commit
di = diff
dw = diff --color-words
lg = log --graph --pretty=format:'%Cred%h%Creset %C(cyan)%an%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
ls = log --stat --decorate
ru = remote update
st = status -sb
poh = push origin HEAD
wdf = diff --word-diff
prlocal = !sh -c 'git branch --merged | grep -v "^*" | xargs git branch -d'
prorigin = remote prune origin
pullall = "!f(){ git pull \"$@\" && git submodule update --init --recursive; }; f"
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true