-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
37 lines (37 loc) · 739 Bytes
/
.gitconfig
File metadata and controls
37 lines (37 loc) · 739 Bytes
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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Arnav Sood
email = 5009477+arnavs@users.noreply.github.com
signingkey = E74E343584A8BD85
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[credential]
helper = osxkeychain
[core]
excludesfile = ~/.gitignore
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[alias]
co = checkout
st = status
ct = commit
ad = add
cm = commit
br = branch
l = log
ps = push
pl = pull
cl = clone
first = rev-list --max-parents=0 HEAD
[include]
path = ~/.gitconfig-local
[commit]
gpgsign = true
[gpg]
program = gpg
[pull]
rebase = false