-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
43 lines (41 loc) · 1.11 KB
/
gitconfig
File metadata and controls
43 lines (41 loc) · 1.11 KB
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
42
43
[user]
name = Chad Jolly
email = cjolly@lawgical.com
[color]
ui = true
[core]
autocrlf = input
[alias]
fp = fetch -p
st = status -sb
ls = log --pretty=format:\"%C(yellow)%h %C(blue)%ad%C(red)%d %C(reset)%s%C(green) [%cn]\" --decorate --date=short
co = checkout
standup = log --since '1 day ago' --oneline --author cjolly@lawgical.com
graph = log --graph --pretty=format':%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset'
ds = diff --staged
undo = reset --soft HEAD^
latest = for-each-ref --count=20 --sort=-committerdate refs/heads/ refs/remotes/origin --format='%(refname:short)'
undeployed = log --pretty=format:\"%h %an: %s\" --abbrev-commit production/master..master
[pull]
rebase = true
[push]
default = current
[grep]
lineNumber = true
[fetch]
prune = true
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[heroku]
account = lawgical
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process