X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=rc%2Fgitconfig;h=719fcefec83ca387838cf3c438c44033f9148446;hb=6d997421a353f85c324d6ebd5eefe388e1bdba9e;hp=63b55889c70f6058ce866ac24ade5bd655c9d396;hpb=9ed7209cfd57660436721ff5bf60d58e62ede295;p=clearscm.git diff --git a/rc/gitconfig b/rc/gitconfig index 63b5588..719fcef 100644 --- a/rc/gitconfig +++ b/rc/gitconfig @@ -1,39 +1,57 @@ [user] - name = Andrew DeFaria - email = Andrew@DeFaria.com + name = Andrew DeFaria + email = Andrew@DeFaria.com + [pack] - windowMemory=128m - threads=1 - deltaCacheSize=128m + windowMemory=128m + threads=1 + deltaCacheSize=128m + [core] - pager = less -RX - packedGitLimit=128m - packedGitWindowSize=128m + pager = less -RX + packedGitLimit=128m + packedGitWindowSize=128m + [color] - status=auto - diff=auto - branch=auto + status=auto + diff=auto + branch=auto + +[diff] + tool = meld + +[difftool] + prompt = false + +[difftool "meld"] + cmd = meld "$LOCAL" "$REMOTE" # Currently these are restating the default [color "branch"] - current=green - local=white - remote=red + current=green + local=white + remote=red + [color "diff"] - external = /usr/local/bin/git-meld + external = /bin/meld + [color "status"] - added=yellow - changed=green - untracked=cyan + added=yellow + changed=green + untracked=cyan [alias] - co=checkout - ci=commit - st=status - br=branch - hist=log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short - type=cat-file -t - dump=cat-file -p - dlog=log --decorate + co=checkout + ci=commit + st=status + br=branch + hist=log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short + type=cat-file -t + dump=cat-file -p + dlog=log --decorate + oldest-ancestor = !bash -c 'diff -u <(git rev-list --first-parent "${1:-master}") <(git rev-list --first-parent "${2:-HEAD}") | sed -ne \"s/^ //p\" | head -1' - + [push] - default = simple + default = simple +[http] + sslVerify = false