-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
48 lines (43 loc) · 872 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
[core]
editor = code --wait
excludesfile = ~/.gitignore
[user]
name = Nikolay Bachiyski
email = nb@nikolay.bg
[github]
user = nb
[alias]
aa = add --all
co = checkout
st = status -sb
ci = commit
di = diff
dc = diff --cached
pish = push
posh = push
lol = log --graph --decorate --pretty=oneline --abbrev-commit
before-push = rebase -i
unstage = reset HEAD
uncommit = reset --soft HEAD^
move-branch-pointer = update-ref -m "reset: Reset branch to new commit"
empty-commit = commit --allow-empty
[push]
default = current
[color]
ui = auto
diff = auto
status = auto
branch = auto
interactive = auto
[pull]
rebase = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[diff]
colormoved = default
colormovedws = allow-indentation-change
[init]
defaultBranch = trunk