-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
38 lines (37 loc) · 707 Bytes
/
Copy pathgitconfig
File metadata and controls
38 lines (37 loc) · 707 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
38
[hub]
protocol = https
[core]
editor = nvim
[credential]
helper = osxkeychain
[user]
name = John Turner
email = jturner@squarespace.com
[init]
templatedir = ~/.git_template
[push]
default = simple
autoSetupRemote = true
[alias]
c = "commit"
co = checkout
lc = local-checkout
hard-reset = "reset --hard HEAD"
hr = hard-reset
p = "push"
nb = new-branch
a = "add"
ap = "add -p"
l = "log --oneline --pretty"
s = "status"
b = branch
current-branch = rev-parse --abbrev-ref HEAD
ff = "pull --ff-only"
delete-branch = "branch -D"
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[diff]
tool = tig