forked from jasoncodes/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
61 lines (46 loc) · 1.15 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
[user]
# These details are used for commits and default to your local machine's user account
# name = John Appleseed
# email = me@example.com
[github]
# These details can be found at <https://github.com/account>
# user = USERNAME
# token = TOKEN
[color]
ui = auto
[color "diff"]
commit = yellow reverse
[core]
excludesfile = ~/.gitignore
[alias]
st = status
ci = commit
co = checkout
br = branch
lg = log --graph --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %C(green bold)- %an %C(black bold)%cd (%cr)%Creset' --abbrev-commit --date=short
standup = shortlog --pretty=format:'%Cred%h%Creset %s %Cgreen(%cr)%Creset' --since='2 days ago' --all
[push]
default = tracking
[merge]
log = true
conflictstyle = diff3
[rebase]
autosquash = true
[url "git@github.com:"]
insteadOf = "gh:"
pushInsteadOf = "github:"
pushInsteadOf = "git://github.com/"
[url "git://github.com/"]
insteadOf = "github:"
[url "git@gist.github.com:"]
insteadOf = "gst:"
pushInsteadOf = "gist:"
pushInsteadOf = "git://gist.github.com/"
[url "git://gist.github.com/"]
insteadOf = "gist:"
[url "git@heroku.com:"]
insteadOf = "heroku:"
[git-up "bundler"]
check = true
[rerere]
enabled = 1