-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit-config
43 lines (41 loc) · 877 Bytes
/
git-config
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
[alias]
co = checkout
br = branch
st = status
last = reset HEAD~
ci = commit
di = diff
mb = merge-base
reb = rebase
rebi = rebase --interactive
sho = show --no-patch
lstags = for-each-ref --sort=-creatordate --format='%(refname:short)\t%(creatordate:short)\t%(contents:subject)' 'refs/tags/*'
[core]
excludesfile = ~/.gitignore
abbrev = 12
editor = vim
[url "https://github.com/"]
insteadOf = [email protected]:
[user]
name = John Passaro
email = [email protected]
[merge]
conflictstyle = diff3
tool = vimdiff
[notes]
rewriteRef = refs/notes/commits
[sendemail]
smtpEncryption = tls
smtpServer = smtp.gmail.com
smtpUser = [email protected]
# smtpPass = haha nice try
[pretty]
ref = %h (\"%s\", %ad)
[jploginutils]
present =
[rebase]
autosquash = true
[pull]
ff = only
# set up via git config include.path
# vi: ft=gitconfig noexpandtab