-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgitconfig
54 lines (54 loc) · 1.18 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
[user]
name = David Celis
email = [email protected]
[help]
autocorrect = 20
[alias]
br = branch
ci = commit -s -v
co = checkout
di = diff
fa = fetch --all
ff = merge --ff-only
pullff = pull --ff-only
noff = merge --no-ff
ignore = update-index --assume-unchanged
amend = commit -a --amend
reuse = commit -a --amend -C HEAD
st = status -s
news = log -p HEAD@{1}..HEAD@{0}
h = "!source ~/.githelpers && show_git_head"
l = "!source ~/.githelpers && pretty_git_log"
fixup = "!source ~/.githelpers && fixup"
squash = "!source ~/.githelpers && squash"
prune-merged = "!source ~/.githelpers && prune_merged"
accept = "!source ~/.githelpers && accept"
update = "!source ~/.githelpers && update"
[color]
ui = auto
[core]
excludesfile = ~/.gitignore
[credential]
helper = osxkeychain
[diff]
renames = copies
[merge]
conflictstyle = diff3
tool = vimdiff
[pager]
log = diff-highlight | less
show = diff-highlight | less
diff = diff-highlight | less
[push]
default = current
[rebase]
autosquash = true
[rerere]
enabled = true
autoupdate = true
[github]
user = davidcelis
password = "!echo | pass github.com"
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f