-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
57 lines (48 loc) · 1.2 KB
/
.gitconfig
File metadata and controls
57 lines (48 loc) · 1.2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[user]
name = Damien Laidin
email = damien@chirp.io
[core]
editor = vim
excludesfile = /Users/damien.laidin/.gitignore_global
[push]
default = simple
recurseSubmodules = on-demand
[alias]
s = status
po = push origin
co = commit
cos = commit --signoff
cl = clone
l = log --graph --date=local --pretty=format:'%C(green)%h%Creset %C(white)-->%Creset %C(blue)%aN (%cE)%Creset %C(white):%Creset %C(yellow)%ad%Creset% %C(white):%Creset%C(auto)%d%Creset%n%B'
ld = log --decorate --graph --date=local
rpo = remote prune origin
st = stash
stp = stash pop
pro = pull --rebase origin
prod = pull --rebase origin develop
uncommit = reset HEAD^
sub = !git submodule sync --recursive && git submodule update --init --recursive
bs = !/Users/littlemonster/git-branch-status.bash -a
[color]
ui = true
status = auto
branch = true
diff = true
interactive = true
[color "decorate"]
HEAD = cyan
branch = green
remoteBranch = red
tag = white
stash = magenta
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[status]
submoduleSummary = true
[diff]
submodule = log
[fetch]
recurseSubmodules = on-demand