-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
52 lines (42 loc) · 1020 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
42
43
44
45
46
47
48
49
50
51
52
[alias]
amend = commit --verbose --amend
co = checkout
commit = commit --verbose
continue = rebase --continue
dc = diff --cached
di = diff
l = log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
peel = "!f() { git reset --soft HEAD^; git diff --staged --name-only | xargs git reset HEAD ;}; f"
rc = checkout release_candidate
unstage = reset HEAD --
wip = commit -am 'WIP'
[color]
diff = auto
status = auto
[color "status"]
added = yellow
changed = green
untrack = cyan
[core]
editor = subl -w
excludesfile = /Users/tim/.gitignore_global
pager = less -+FX
[filter "lfs"]
clean = git-lfs clean -- %f
process = git-lfs filter-process
required = true
smudge = git-lfs smudge -- %f
[init]
defaultBranch = main
[pager]
branch = false
[pull]
ff = only
[push]
default = upstream
[rerere]
enabled = true
[user]
email = [email protected]
name = Tim Kelly
username = timlkelly