-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
68 lines (68 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
[user]
email = 129040985+MrDwarf7@users.noreply.github.com
name = MrDwarf7
[init]
defaultBranch = main
[core]
editor = nvim
excludesFile = "$HOME/.gitignore_global"
pager = delta
autocrlf = input
symlinks = true
[interactive]
singleKey = true
diffFilter = delta --color-only
[delta]
navigate = true
dark = true
; light = true
line-numbers = true
; side-by-side = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[alias]
last = log -1 HEAD
wt-bare = !sh $HOME/dotfiles/git-clone-worktrees.sh
wta = worktree add
wtl = worktree list
wtr = worktree remove
wtm = worktree move
s- = switch -
fa = fetch --all
pla = pull --all
pa = push --all
rs = restore --staged
cm = commit -m
rlast = reflog -5 HEAD
sut = branch --set-upstream-to
undo = reset --soft HEAD~1
undoh = reset --hard HEAD~1
unst = restore --staged
uncm = reset --soft HEAD~1
reorder = rebase -i HEAD~5
[push]
autoSetupRemote = true
[difftool "sourcetree"]
cmd = "'' "
[mergetool "sourcetree"]
cmd = "'' "
trustExitCode = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential]
helper = /mnt/c/Applications/Git/mingw64/bin/git-credential-manager.exe
; THESE PATHS CANNOT BE INTERPOLATED
[credential "https://github.com"]
helper = !'gh\\current\\bin\\gh.exe' auth git-credential
[credential "https://gist.github.com"]
helper = !'gh\\current\\bin\\gh.exe' auth git-credential
[http]
sslVerify = false
[safe]
directory = *
directory = E:/Github*/**/*