-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitconfig
53 lines (41 loc) · 896 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
[advice]
detachedHead = false
[alias]
apply = --git-dir= apply
commit = commit -v
diff = diff --no-index
graph = log --graph --date=relative --pretty=preset
revert = reset --hard HEAD^
stage = add
uncommit = reset --soft HEAD^
unstage = reset HEAD
[color]
status = always
ui = auto
[core]
editor = vi
pager = less -cm
quotepath = false
[filter "lfs"]
clean = git-lfs clean -- %f
process = git-lfs filter-process
required = true
smudge = git-lfs smudge -- %f
[merge]
ff = false
[pager]
branch = cat
tag = cat
[pretty]
preset = format:%C(yellow reverse) %h %C(green reverse) %an %C(reset)%C(cyan) %ar%C(red)%d%n> %C(bold)%w(0, 0, 2)%B%n
[pull]
rebase = true
[push]
default = simple
[sendpack]
sideband = false
# [url "[email protected]:"]
# insteadOf = https://github.com/
[user]
email = [email protected]
name = yamacir-kit