diff options
author | bnewbold <bnewbold@robocracy.org> | 2014-12-03 21:35:32 -0800 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2014-12-03 21:35:34 -0800 |
commit | f49a05a472f2eb8e9df9eeef3d505870e23dc9a7 (patch) | |
tree | 3ed8c7b4dd282bdcbc0fda4dd5cbceead84ee947 | |
parent | 11cd182f0fce54186111d033672ad55b7dab1e4e (diff) | |
download | openwrt-repro-f49a05a472f2eb8e9df9eeef3d505870e23dc9a7.tar.gz openwrt-repro-f49a05a472f2eb8e9df9eeef3d505870e23dc9a7.zip |
add gitconfig
I thought I used to have 'git status' show deleted files as red, but
aparently this isn't possible? Meh.
-rw-r--r-- | .gitconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..c50e992 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,20 @@ +[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 +[user] + name = bnewbold + email = bnewbold@robocracy.org |