-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgitconfig
More file actions
51 lines (42 loc) · 1021 Bytes
/
gitconfig
File metadata and controls
51 lines (42 loc) · 1021 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[include]
path = ~/.gitconfig-local
# Things to include in ~/.gitconfig-local:
#
# [user]
# name = Name
# email = email@email.com
[core]
excludesfile = ~/.gitignore_global
precomposeunicode = true
compression = 0
[color]
ui = auto
[alias]
a = add
b = branch
co = checkout
ci = commit
cia = commit -a
ciam = commit -a -m
cim = commit -m
d = diff
h = help
l = log -30 --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %Cgreen(%cr) %C(bold blue)<%an>%Creset %s' --decorate --abbrev-commit
prom = pull --rebase origin master
prob = !git pull --rebase origin \"$(git branch --show-current)\"
r = rebase
aarc = !git add -A && git rebase --continue
s = status -s
st = stash
stpm = stash push -m
tree = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %Cgreen(%cr) %C(bold blue)<%an>%Creset %s' --abbrev-commit
[push]
default = current
[rerere]
enabled = true
[pull]
rebase = false
[credential]
helper = osxkeychain
[diff]
algorithm = histogram