-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
69 lines (63 loc) · 1.29 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[user]
name = Dariusz Gertych
email = [email protected]
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[rerere]
enabled = true
[github]
user = chytreg
token = GITHUB_TOKEN
[alias]
st = status
ci = commit
co = checkout
br = branch
ph = push
pl = pull
unstage = reset HEAD --
last = log -1 HEAD
spull = "!__git_spull() { git pull \"$@\" && git submodule sync --recursive && git submodule update --init --recursive; }; __git_spull"
spush = push --recurse-submodules=on-demand
cf = !sh -c \"git diff --name-only | uniq | xargs subl -n\"
[core]
excludesfile = ~/.gitignore-global
editor = vim
[git-up "bundler"]
check = true
[git-up "fetch"]
all = true
[git-up "rebase"]
arguments = --preserve-merges
[push]
default = simple
[credential]
helper = osxkeychain
[url "[email protected]:"]
insteadOf = gh:
[branch]
autosetupmerge = always
[status]
submoduleSummary = true
[diff]
submodule = log
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true