-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
52 lines (44 loc) · 1.28 KB
/
.gitconfig
File metadata and controls
52 lines (44 loc) · 1.28 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
52
[pull]
rebase = true
[push]
autoSetupRemote = true
[core]
filemode = true
autocrlf = false
[add.interactive]
useBuiltin = false # required for git 2.37.0
[difftool]
# Run the difftool immediately, don't ask 'are you sure' each time.
prompt = false
[pager]
# Use a pager if the difftool output is larger than one screenful,
# consistent with the behaviour of `git diff`.
difftool = true
[diff]
# Set difftastic as the default difftool, so we don't need to specify
# `-t difftastic` every time.
tool = difftastic
external = difft
[difftool "difftastic"]
# See `man git-difftool` for a description of MERGED, LOCAL and REMOTE.
cmd = difft "$MERGED" "$LOCAL" "abcdef1" "100644" "$REMOTE" "abcdef2" "100644"
[merge]
conflictstyle = diff3
[user]
signingkey = 0090AFE67BB8349DA5FEE47D4C79FAB5E41D2143
email = piashchynski.valery@gmail.com
name = Valery Piashchynski
[commit]
gpgsign = true
[url "git@github.com:"]
insteadOf = https://github.com/
[url "git@gitlab.com:"]
insteadOf = https://gitlab.com/
[url "git@bitbucket.org:"]
insteadOf = https://bitbucket.org/
[url "git@git.spiralscout.com:"]
insteadOf = https://git.spiralscout.com/
[credential]
helper = /usr/bin/git-credential-manager
[credential "https://dev.azure.com"]
useHttpPath = true