-
Notifications
You must be signed in to change notification settings - Fork 5
/
gitconfig.erb
61 lines (61 loc) · 1.3 KB
/
gitconfig.erb
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
# vim: noexpandtab:ts=4:sw=4
[init]
defaultBranch = main
[user]
name = Jeff Wallace
email = <%= print("Your Email: "); STDOUT.flush; STDIN.gets.chomp %>
signingkey = <%= print("Your GPG signing key: "); STDOUT.flush; STDIN.gets.chomp %>
[github]
user = tjwallace
[alias]
ci = commit --verbose
amend = commit --amend
co = checkout
st = status -sb
hist = log --pretty=format:\"%h | %ad | %s %Cgreen[%an]%Creset%Cred%d%Creset\" --graph --date=short
d = diff
dc = diff --cached
yolo = push --force-with-lease origin HEAD
noff = merge --no-ff
ff = merge --ff-only
rbm = rebase origin/master
rbmi = rebase -i origin/master
up = fetch --all --prune
[core]
editor = vim
pager = delta
excludesfile = ~/.gitignore
[color]
ui = auto
[push]
default = current
autoSetupRemote = true
[pull]
rebase = true
[commit]
gpgsign = true
[merge]
tool = opendiff
conflictstyle = diff3
[mergetool]
keepBackup = false
[rebase]
autoSquash = true
autoStash = true
[rerere]
enabled = true
autoupdate = true
[blame]
ignoreRevsFile = .git-blame-ignore-revs
[url "[email protected]:"]
insteadOf = https://github.com/
[advice]
skippedCherryPicks = false
[delta]
light = true
syntax-theme = Solarized (light)
line-numbers = true
[delta "interactive"]
keep-plus-minus-markers = false
[blame]
ignoreRevsFile = .git-blame-ignore-revs