This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-07-20 16:50:04 -04:00
|
|
|
[push]
|
|
|
|
default = simple
|
|
|
|
|
|
|
|
[user]
|
|
|
|
name = Andrew Coleman
|
|
|
|
email = penguincoder@gmail.com
|
|
|
|
|
|
|
|
[core]
|
|
|
|
filemode = true
|
|
|
|
eol = lf
|
|
|
|
autocrlf = input
|
|
|
|
|
2019-07-24 12:00:22 -04:00
|
|
|
[merge]
|
|
|
|
tool = vimdiff
|
|
|
|
conflictstyle = diff3
|
|
|
|
prompt = false
|
|
|
|
|
2018-07-20 16:50:04 -04:00
|
|
|
[color]
|
|
|
|
branch = auto
|
|
|
|
diff = auto
|
|
|
|
status = auto
|
|
|
|
ui = true
|
|
|
|
|
|
|
|
[color "branch"]
|
|
|
|
current = yellow reverse
|
|
|
|
local = yellow
|
|
|
|
remote = green
|
|
|
|
|
|
|
|
[color "diff"]
|
|
|
|
meta = yellow bold
|
|
|
|
frag = magenta bold
|
|
|
|
old = red bold
|
|
|
|
new = green bold
|
|
|
|
|
|
|
|
[color "status"]
|
|
|
|
added = yellow
|
|
|
|
changed = green
|
|
|
|
untracked = red
|
|
|
|
|
|
|
|
[alias]
|
|
|
|
logp = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
|
2018-12-07 12:56:06 -05:00
|
|
|
lg = log --graph --date-order --first-parent \
|
2018-07-20 16:50:04 -04:00
|
|
|
--pretty=format:'%C(auto)%h%Creset %C(auto)%d%Creset %s %C(green)(%ad) %C(bold cyan)<%an>%Creset'
|
|
|
|
lgb = log --graph --date-order --branches --first-parent \
|
|
|
|
--pretty=format:'%C(auto)%h%Creset %C(auto)%d%Creset %s %C(green)(%ad) %C(bold cyan)<%an>%Creset'
|
|
|
|
lga = log --graph --date-order --all \
|
|
|
|
--pretty=format:'%C(auto)%h%Creset %C(auto)%d%Creset %s %C(green)(%ad) %C(bold cyan)<%an>%Creset'
|
|
|
|
up = pull --rebase
|
2018-12-07 12:56:06 -05:00
|
|
|
branches-last-updated = branch -rv --sort=committerdate --format='%(HEAD) %(color:green)%(committerdate:relative)%(color:reset)\t%(color:magenta)%(authorname)%(color:reset)\t%(color:yellow)%(refname:short)%(color:reset)'
|