-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
56 lines (52 loc) · 963 Bytes
/
.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
[user]
email = [email protected]
name = Igor Tonkopryadchenko
[color]
ui = auto
# branch = auto
# diff = auto
interactive = auto
# status = auto
[core]
editor = nvim
[alias]
a = add
aa = add .
au = add -u
b = branch
br = branch -r
cl = clone
c = commit
cm = commit -m
ca = commit -a -m
am = commit --amend
co = checkout
d = diff
dh = diff HEAD
ds = diff --staged
h = help
mnf = merge --no-ff
l = log --graph --raw -n 200
la = log --graph --raw
pa = push --all
s = status
sm = submodule
smi = submodule init
smu = submodule update
r = rebase
[branch "*"]
mergeoptions = --no-ff
[branch "master"]
remote = origin
merge = refs/heads/master
[push]
default = simple
followTags = true
[includeIf "gitdir:~/work/"]
path = ~/work/.gitconfig
[protocol]
version = 2
[credential "https://github.com"]
helper = !/usr/bin/gh auth git-credential
[init]
defaultBranch = master