-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot-gitconfig
More file actions
41 lines (41 loc) · 750 Bytes
/
dot-gitconfig
File metadata and controls
41 lines (41 loc) · 750 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]
name = Ryan Krug
email = ryank@kit.com
[init]
defaultBranch = main
templatedir = ~/.git_template
[push]
default = current
[color]
ui = always
[alias]
aa = add --all
ap = add --patch
au = add --update
co = checkout
ci = commit
pf = push --force-with-lease
dt = difftool
st = status -sb
cb = checkout -b
wl = worktree list
wa = worktree add
wr = worktree remove
[core]
excludesfile = ~/.gitignore
autocrlf = input
pager = cat
[merge]
ff = only
[commit]
template = ~/.gitmessage
verbose = true
[fetch]
prune = true
[rebase]
autosquash = true
[diff]
colorMoved = zebra
tool = ediffclient
[difftool "ediffclient"]
cmd = $VISUAL --eval \"(ediff-files \\\"$LOCAL\\\" \\\"$REMOTE\\\")\"