-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
79 lines (56 loc) · 1.5 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
75
76
77
78
79
[alias]
# Abbreviated command names
ad = add
bi = bisect
br = branch
ci = commit
co = checkout
cp = cherry-pick
di = diff
gr = grep
lo = log
pl = pull
ps = push
rb = rebase
rs = restore
st = status
sw = switch
[color]
# Use colors in Git commands that are capable of colored output
ui = auto
[commit]
# Automatically sign using GPG keys
# Instructions for copying GPG keys from one machine to another:
# https://makandracards.com/makandra-orga/37763-gpg-extract-private-key-and-import-on-different-machine
gpgsign = true
[core]
# Set the default editor
editor = vim
# Use global .gitignore file to ignore certain filetypes
excludesfile = ~/.gitignore
[diff]
# Use vimdiff as the default difftool
tool = vimdiff
[difftool]
# Disable the prompt asking you if you want to open with vimdiff
prompt = False
[merge]
# Use vimdiff as the default mergetool
tool = vimdiff
[mergetool]
# Disable the prompt asking you if you want to open with vimdiff
prompt = False
[pull]
# Don't merge or rebase when branch has local changes
ff = only
[push]
# Unless otherwise specified, push the current branch to a remote branch of the same name
default = current
[rerere]
# Reuse recorded resolution of conflicted merges
enabled = true
[user]
# Set user commit information
email = [email protected]
name = Adam J. Stewart
signingkey = C66C0675661156FC