-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
58 lines (48 loc) · 1 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
54
55
56
57
58
[user]
name = Roman Perminov
email = [email protected]
[credential]
helper = GIT_CREDENTIAL_HELPER
[alias]
a = add
all = add -A
st = status -sb
ci = commit -m
ca = commit --amend
br = branch
co = checkout
df = diff
dfc = diff --cached
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
lg = log --pretty=format:'%C(yellow)%h%Creset %Cgreen(%><(12)%cr%><|(12))%Creset - %s %C(blue)<%an>%Creset'
pl = pull
ps = push
undo = reset --soft HEAD^
sta = stash
stap = stash apply
uall = reset .
sync = !git pull origin master && git push nikolalsvk master
type = cat-file -t
dump = cat-file -p
[color]
diff = auto
status = auto
branch = auto
ui = true
[core]
excludesfile = ~/.gitignore
editor = vim
autocrlf = input
safecrlf = false
[apply]
whitespace = nowarn
[mergetool]
keepBackup = false
[difftool]
prompt = false
[help]
autocorrect = 1
[pull]
default = current
[push]
default = current