-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
55 lines (42 loc) · 730 Bytes
/
gitconfig
File metadata and controls
55 lines (42 loc) · 730 Bytes
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
[user]
name = Tomasz Pajor
email = tomek@polishgeeks.com
[core]
excludesfile = ~/.gitignore
editor = vim
pager = cat
[alias]
ci = commit
co = checkout
st = status
b = branch
l = log -5
cleanup = !git remote prune origin && git gc && git clean -df && git stash clear
[color]
status = auto
branch = auto
interactive = auto
diff = auto
[color "diff"]
meta = yellow
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[github]
user = nijikon
[fetch]
prune = true
[apply]
whitespace = nowarn
[help]
autocorrect = 1
[branch]
autosetupmerge = true
autosetuprebase = always
[push]
default = current
[rerere]
enabled = 1
[merge]
ff = only