-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
41 lines (35 loc) · 966 Bytes
/
gitconfig
File metadata and controls
41 lines (35 loc) · 966 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
39
40
41
[user]
email = russell@hancox.us
name = Russell Hancox
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBMUOn9QX9jzzLb3Uox+8LvUaWy1536uEHbwRTrG2RXv
[alias]
vimdiff = "difftool -y -t vimdiff -R"
cm = "commit"
co = "checkout"
ca = "commit -a --amend --no-edit"
pf = "push origin -f"
st = "status -sb"
lg = "log --pretty=format:'%Cred%h%Creset -%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'"
purr = "pull --rebase"
graph = "log --graph --oneline --all"
ignored = "ls-files --others -i --exclude-standard"
wip = "commit -a -m 'WIP'"
[push]
default = current
[diff]
algorithm = patience
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
[commit]
gpgsign = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[fetch]
prune = true