35 lines
648 B
INI
35 lines
648 B
INI
[user]
|
|
name = Barak Michener
|
|
email = me@barakmich.com
|
|
|
|
[alias]
|
|
st = status -uno
|
|
stat = status -uno
|
|
ci = commit
|
|
co = checkout
|
|
w = whatchanged
|
|
revert = checkout -f
|
|
stagediff = diff --staged
|
|
sdiff = diff --staged
|
|
graph = log --graph --oneline
|
|
submodule-pull = submodule foreach git pull
|
|
ours = "!f() { git checkout --ours $@ && git add $@; }; f"
|
|
theirs = "!f() { git checkout --theirs $@ && git add $@; }; f"
|
|
|
|
[diff]
|
|
renamelimit = 0
|
|
|
|
[color]
|
|
diff = auto
|
|
interactive = auto
|
|
status = auto
|
|
branch = auto
|
|
|
|
[core]
|
|
autocrlf = input
|
|
;[push]
|
|
;default = simple
|
|
[push]
|
|
default = current
|
|
[rerere]
|
|
enabled = true
|