-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitconfig
37 lines (37 loc) · 945 Bytes
/
.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
[user]
name = Saagar Jha
email = [email protected]
[alias]
glog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
git = !echo "You wrote \"git\" twice." >&2 && git
rb = "!f() { revision=$1; shift; git rbi HEAD~$revision "$@"; }; f"
try-pr = test-pr
rbi = rebase -i
[status]
showUntrackedFiles = all
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[core]
excludesfile = /Users/saagarjha/.gitignore
editor = nano
attributesfile = /Users/saagarjha/.gitattributes
[push]
followTags = true
[merge]
conflictstyle = diff3
[rerere]
enabled = true
[diff "plist"]
textconv = plutil -convert xml1 -o -
[pager]
log = git _diff-pager
show = git _diff-pager
diff = git _diff-pager
[sendemail]
smtpEncryption = tls
smtpServer = smtp.gmail.com
smtpUser = [email protected]
smtpServerPort = 587