mirror of https://github.com/bjeanes/dotfiles.git
Updated .gitconfig to include some stuff Dr Nic recommends.
parent
42e95232d7
commit
5b02926ca9
23
.gitconfig
23
.gitconfig
|
@ -3,25 +3,20 @@
|
|||
email = me@bjeanes.com
|
||||
[merge]
|
||||
summary = true
|
||||
|
||||
tool = opendiff
|
||||
[alias]
|
||||
co = checkout
|
||||
put = push origin HEAD
|
||||
push-all = "!for i in $(git config --list | grep -E ^remote\\..+\\.url | sed -E 's/^remote\\.(.*)\\.url=.*/\\1/'); do git push $i master; done"
|
||||
[apply]
|
||||
whitespace = nowarn
|
||||
[color]
|
||||
branch = auto
|
||||
diff = auto
|
||||
status = auto
|
||||
[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 = cyan
|
||||
[github]
|
||||
user = bjeanes
|
||||
[core]
|
||||
editor = mate -w
|
||||
excludesfile = ~/.gitignore
|
||||
|
||||
|
|
Loading…
Reference in New Issue