-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
47 lines (47 loc) · 951 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
[user]
name = Jankees
email = [email protected]
[color]
diff = auto
status = auto
branch = auto
[fetch]
prune = true
[diff]
renames = copies
[core]
editor = /usr/local/bin/mate -w
excludesfile = ~/.gitignore
autocrlf = false
pager = less
[credential]
helper = osxkeychain
[gist]
browse = true
private = true
[difftool]
prompt = false
[mergetool]
prompt = false
[push]
default = current
[alias]
recent = !git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/ | head -n 100
fco = !sh -c \"git checkout $(git branch | fzf)\" -
ff = !git commit --fixup $(git log --pretty=oneline | fzf | cut -c 1-40)
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[branch]
autosetuprebase = always
[help]
autocorrect = 1
[rebase]
autosquash = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[gc]
auto = 0