forked from hasanguner/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
executable file
·32 lines (31 loc) · 877 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
[user]
name = Hasan Guner
email = [email protected]
[init]
templatedir = ~/.git_templates/
[core]
editor = vim
excludesfile = ~/.gitignore_global
autocrlf = input
[color]
ui = true
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
[push]
default = current
[alias]
rom = rebase -i origin/master
wip = commit -m "WIP"
po = push
pof = push -f
history = log --graph --decorate --pretty=oneline --abbrev-commit --all