-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
64 lines (60 loc) · 1.24 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
62
63
64
[core]
excludesfile = ~/.gitignore
editor = /usr/bin/vim
quotepath = false
autocrlf = input
[user]
name = Kevin Baribeau
email = [email protected]
[alias]
ci = commit -v
lg = log --date=relative --stat --graph
st = status -s
aa = add --all
ca = commit --amend -v
co = checkout
cp = cherry-pick
dc = diff --cached
di = diff
pushf = push --force-with-lease
pr = pull --rebase
rc = rebase --continue
ri = rebase --interactive
fixup = commit --fixup
;jokes :)
praise = blame
clown = clone
stache = stash
; from @bostonaholic
iteration = log --pretty='tformat:%h (%ar) -- %d %s' --since='2 weeks ago' --author='baribeau'
[color]
ui = auto
[branch]
autosetuprebase = always
[github]
user = kbaribeau
[rerere]
enabled = 1
[rebase]
autosquash = true
autoStash = true
[git-pair]
authors = Zee Spencer <[email protected]>
authors = Kevin Baribeau <[email protected]>
authors = Elisabeth Hendrickson <[email protected]>
[push]
default = current
followTags = true
[include]
path = ~/.gitconfig.local
[credential]
helper = osxkeychain
[status]
relativePaths = false
;; This screws up cargo/rust
;; [url "ssh://[email protected]/"]
;; insteadOf = https://github.com/
[diff]
renames = true
[merge]
defaultToUpstream = true