2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-17 09:25:52 +00:00
steffen-dotfiles/gitconfig

54 lines
1.0 KiB
Plaintext
Raw Normal View History

[include]
path = ~/.gitconfig.user
[core]
excludesfile = ~/.gitignore
2012-11-13 18:28:59 +00:00
editor = 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]
st = status
cm = commit
co = checkout
br = branch -a
ps = push
pl = pull
2012-05-30 18:34:12 +00:00
mg = merge
2012-07-23 20:44:19 +00:00
unst = reset HEAD
hub = push origin master
fac = push origin refac
2012-05-28 15:44:29 +00:00
subup = submodule foreach git pull
2012-09-14 16:20:22 +00:00
rs = reset HEAD --hard
hist = log --pretty=format:\"%h | %ad | %an | %s%d \" --graph --date=local
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