mirror of
https://github.com/meineerde/dotfiles.git
synced 2025-10-17 19:41:01 +00:00
45 lines
1005 B
INI
45 lines
1005 B
INI
[alias]
|
|
lg = log --graph --pretty=format:'%Cred%h%Creset %Cblue(%aN)%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
|
|
chp = cherry-pick
|
|
st = status
|
|
co = checkout
|
|
merge = merge --no-ff
|
|
ci = commit
|
|
cm = commit
|
|
p = push
|
|
pf = push --force-with-lease
|
|
fp = push --force-with-lease
|
|
su = submodule update --recursive --init
|
|
# https://stackoverflow.com/a/7149602/421705
|
|
addnw = !sh -c 'git diff -U0 -w --no-color "$@" | git apply --cached --ignore-whitespace --unidiff-zero' -
|
|
[user]
|
|
name = Holger Just
|
|
email = hello@holgerjust.de
|
|
[color]
|
|
branch = auto
|
|
diff = auto
|
|
grep = auto
|
|
interactive = auto
|
|
ui = auto
|
|
[push]
|
|
default = tracking
|
|
recurseSubmodules = check
|
|
[core]
|
|
autocrlf = false
|
|
excludesfile = ~/.gitignore_global
|
|
[github]
|
|
user = meineerde
|
|
[credential]
|
|
helper=osxkeychain
|
|
[branch]
|
|
autosetupmerge = true
|
|
autosetuprebase = always
|
|
[http]
|
|
postBuffer = 524288000
|
|
[fetch]
|
|
fsckobjects = true
|
|
[transfer]
|
|
fsckobjects = true
|
|
[receive]
|
|
fsckobjects = true
|