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

76 lines
1.2 KiB
Plaintext
Raw Normal View History

[include]
path = ~/.gitconfig.user
[core]
excludesfile = ~/.gitignore
autocrlf = input
eol = lf
pager = diff-so-fancy
[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
cp = cherry-pick
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
2017-08-08 11:45:42 +00:00
fame = shortlog -sn --all --no-merges
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
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
2020-07-08 17:27:44 +00:00
[pull]
rebase = false
2016-06-15 19:30:24 +00:00
[interactive]
diffFilter = diff-highlight
[credential]
helper = store