-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
50 lines (50 loc) · 1.19 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
[user]
name = Andrew Kurin
email = [email protected]
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAv+6bk+nKkOcZ6u5DxR0Fmz5jMzMh39ZSaMaGgV2LD6
[branch "master"]
remote = origin
merge = refs/heads/master
[github]
user = zen4ever
[color]
branch = auto
diff = auto
status = auto
interactive = auto
ui = true
pager = true
[alias]
co = checkout
st = status -sb
w = whatchanged
# add all changed (but not new) files to stage (index)
au = add -u
# prune all tracking local branches that have been removed from remote
prune-all = !git remote | xargs -n 1 git remote prune
changes = log --oneline --reverse
info = config --list
staged = diff --cached
summary = log --oneline
tags = tag -n1 -l
dt = difftool
[core]
pager = less -FRSX
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
editor = /usr/bin/vi
[diff]
tool = vimdiff
[diff "localizablestrings"]
textconv = "iconv -f utf-16 -t utf-8"
[push]
default = matching
[pull]
rebase = false
[init]
defaultBranch = main
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
[commit]
gpgsign = true