-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitconfig
39 lines (39 loc) · 885 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
[merge]
conflictstyle = diff3
[user]
name = Sergei Dolgov
email = [email protected]
[alias]
co = checkout
br = branch
ci = commit
st = status
last = log -1 HEAD
unstage = reset HEAD --
trash = !git add . && git commit -m 'trash' && git reset --hard HEAD^
serve = !git daemon --reuseaddr --verbose --base-path=. --export-all --port=8000 ./.git
news = log -p HEAD@{1}..HEAD@{0}
clonep = "!f() { git clone $1 $(echo $1 | sed 's;.*[/:]\\([^/]*/[^/]*\\).git;\\1;'); }; f"
[difftool]
prompt = no
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[sendemail]
smtpserver = smtp.gmail.com
smtpserverport = 587
smtpencryption = tls
smtpuser = [email protected]
[push]
default = simple
[pull]
ff = only
[core]
quotepath = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true