-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
74 lines (74 loc) · 1.73 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# vim: sts=8 sw=8 ts=8
[alias]
# shows you latest commit on all branches, and upstream info:
b = branch -vv
blast = push
cirand = commit .random -m 'update .random'
cm = commit
co = checkout
diffs = diff --compact-summary --find-renames --find-copies
furcate = branch
grpe = grep
lg = log --graph
lgn = log --graph --name-status --find-copies
lgs = log --graph --compact-summary --find-copies
lol = log --oneline
lolg = log --oneline --graph
pf = push --force-with-lease
shows = show --compact-summary --find-copies
st = status
sw = switch
sub = submodule
wdiff = diff --color-words
wshow = show --color-words
#[branch]
# # make git pull re-apply your local changes on top of any new commits;
# # you probably don't want this if you ever merge any other branches.
# # it's probably okay on a per-repository basis.
# autosetuprebase = remote
[browser "xdg-open"]
cmd = xdg-open
[clean]
requireForce = true
[color]
# enables color for everything that supports it
ui = auto
[diff]
algorithm = patience
colorMoved = default
renames = copies
submodule = log
[log]
decorate = short
[merge]
tool = vimdiff
[mergetool "vimdiff"]
path = nvim
[rebase]
autosquash = true
stat = true # shows which files changed when doing a rebase
[status]
submoduleSummary = true
[user]
name = Ari Pollak
signingkey = key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPg/BwGED9tKKBPb6frF7q/5zxKKFKIU7sRzgdqbDKzs
[url "git://github.com/"]
# Read-only, e.g. gh:aripollak/random
insteadOf = gh:
[url "[email protected]:"]
# With write access
insteadOf = ghw:
[web]
browser = xdg-open
[pull]
ff = only
[push]
autoSetupRemote = true
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = /home/ari/.ssh/allowed_signers
[commit]
gpgsign = true
[rerere]
enabled = true