2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-03 15:40:30 +00:00
steffen-dotfiles/gitconfig

71 lines
1.3 KiB
Plaintext
Raw Normal View History

[include]
path = ~/.gitconfig.user
[core]
excludesfile = ~/.gitignore
autocrlf = input
eol = lf
2016-07-28 08:54:55 +00:00
pager = diff-so-fancy | less --tabs=2 -RFX
[color]
ui = auto
2016-06-15 19:30:24 +00:00
[color "branch"]
current = yellow reverse
local = yellow
remote = green
2016-06-15 19:30:24 +00:00
[color "diff"]
2016-08-17 20:20:34 +00:00
meta = yellow
commit = green
frag = magenta
old = red
new = green
whitespace = red reverse
2016-06-15 19:30:24 +00:00
[color "diff-highlight"]
2016-08-17 20:20:34 +00:00
newNormal = green
newHighlight = green 22
oldNormal = red
oldHighlight = red 52
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
git = !git
2014-02-01 15:07:33 +00:00
cl = clean -f -d
st = status
cm = commit
co = checkout
br = branch -a
ps = push
pl = pull
2012-05-30 18:34:12 +00:00
mg = merge
2013-07-05 16:49:04 +00:00
ffs = flow feature start
fff = flow feature finish
2014-07-18 16:30:36 +00:00
ffp = flow feature publish
2013-07-05 16:49:04 +00:00
fi = flow init
2012-09-14 16:20:22 +00:00
rs = reset HEAD --hard
hist = log --pretty=format:\"%h | %ad | %an | %s%d \" --graph --date=local
2016-08-17 20:20:34 +00:00
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(blue)<%an>%Creset' --abbrev-commit
lo = log --graph --decorate --pretty=oneline --abbrev-commit --all
pu = !"git fetch origin -v; git fetch upstream -v; git merge upstream/master"
2012-09-18 12:09:25 +00:00
[diff]
tool = nvim -d
guitool = nvim -d
2016-06-15 19:30:24 +00:00
compactionHeuristic = true
2012-09-18 12:09:25 +00:00
[mergetool]
2012-09-18 12:09:25 +00:00
prompt = false
keepBackup = false
2015-02-21 13:24:00 +00:00
[push]
default = simple
2016-06-15 19:30:24 +00:00
[interactive]
diffFilter = diff-highlight