-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
33 lines (33 loc) · 956 Bytes
/
.gitconfig
File metadata and controls
33 lines (33 loc) · 956 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 = Ric Ewing
email = [email protected]
[credential]
helper = osxkeychain
[alias]
st = status
ci = commit -m
co = checkout
br = branch
brr = branch -r
mf = merge --no-ff
lg = log --pretty=format:'\t%C(cyan bold dim)%h%Creset%C(auto) %s %C(yellow dim)%C(cyan dim)%an %Creset%C(yellow dim)%ar%Creset %C(auto)%d' --graph --decorate=full --all
l = log --pretty=format:'\t%C(cyan dim)%h%Creset%C(auto) %<(50,trunc)%s %C(yellow dim)%C(cyan dim)%<(14)%an %Creset%C(yellow dim)%<(10)%ar%Creset %C(auto)%d' --graph --decorate=full
f = fetch origin -p
rb = rebase origin/develop
pm = push origin master
[push]
default = matching
[color]
ui = true
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[core]
excludesfile = /Users/ricewing/.gitignore_global
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[fetch]
prune = true