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

64 lines
1.3 KiB
Plaintext
Raw Normal View History

[include]
path = ~/.gitconfig.user
[core]
excludesfile = ~/.gitignore
2014-03-26 15:33:00 +00:00
editor = /Applications/MacVim.app/Contents/MacOS/Vim
autocrlf = input
eol = lf
pager = less -FXRS -x2
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[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-11-23 15:52:11 +00:00
rbc = rebase --continue
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-07-23 20:44:19 +00:00
unst = reset HEAD
hub = push origin master
fac = push origin refac
2012-09-14 16:20:22 +00:00
rs = reset HEAD --hard
hist = log --pretty=format:\"%h | %ad | %an | %s%d \" --graph --date=local
2013-06-06 09:32:02 +00:00
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold 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"
type = cat-file -t
dump = cat-file -p
2012-09-18 12:09:25 +00:00
[diff]
tool = vimdiff
2012-11-13 18:28:59 +00:00
guitool = vimdiff
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