-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
53 lines (53 loc) · 1.11 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
[user]
name = Alexander Kim
useConfigOnly = false
signingkey = DCDEA94D12589CA9AE306127798418E1C45C99E4
email = [email protected]
[push]
default = current
[difftool]
prompt = false
[mergetool]
prompt = false
[diff]
wordRegex = \\w+ | [^[:space:]]
renameLimit = 2000
external = difft
[credential]
helper = osxkeychain
[core]
excludesfile = /Users/alexander/.config/gitignore
pager = delta --dark --syntax-theme \"Monokai Extended Bright\"
editor = idea --wait -e
[alias]
lg = log --color --abbrev-commit --pretty=format:'%Cred%h%Creset - %Cgreen%cd (%cr) %C(bold blue)<%an>%Creset %n%w(72, 10, 10)%s%n%Creset' --date='format:%Y-%m-%d %H:%M:%S'
up = pull
c = commit --verbose
ca = commit -a --verbose
caa = commit --amend --verbose
co = checkout
s = status
a = add
aa = add -A
p = push
cp = cherry-pick
pf = push --force-with-lease
sync = delete-merged-branches --effort=3
[github]
user = nesl247
[color]
ui = auto
[pull]
rebase = true
[rebase]
autoStash = true
[commit]
gpgsign = true
[gpg]
program = /usr/local/MacGPG2/bin/gpg2
[protocol]
version = 2
[url "[email protected]:"]
insteadOf = https://github.com/
[init]
defaultBranch = main