-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
51 lines (50 loc) · 1.09 KB
/
Copy path.gitconfig
File metadata and controls
51 lines (50 loc) · 1.09 KB
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
# Tips: https://blog.gitbutler.com/how-git-core-devs-configure-git/
# Available settings: https://git-scm.com/docs/git-config#_variables
[credential]
# Clear other helpers
helper =
# https://github.com/git-ecosystem/git-credential-manager
helper = /usr/local/share/gcm-core/git-credential-manager
[credential "https://dev.azure.com"]
useHttpPath = true
[core]
editor = code --wait
fsmonitor = true
untrackedCache = true
[user]
name = Maxwell Burson
email = maxwellburson@gmail.com
[push]
default = simple
autoSetupRemote = true
followTags = true
[pull]
rebase = false
[column]
ui = auto
[branch]
sort = -committerdate
[tag]
sort = version:refname
[init]
defaultBranch = main
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[fetch]
prune = true
pruneTags = true
all = true
[merge]
# This should create a zdiff fallback if zdiff3 isn't available?
conflictstyle = zdiff
# zdiff not supported on macOS git
# conflictstyle = zdiff3
[rebase]
autosquash = true
autostash = true
updateRef = true
[commit]
verbose = true