1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 19:44:05 +02:00

[scripts] env: colorize git output

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30602 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2012-02-16 19:24:34 +00:00
parent 694a09285d
commit 8b4aee843b

View File

@ -96,13 +96,13 @@ env_do_reset() {
env_list() {
env_init
git branch | grep -vE '^. master$'
git branch --color | grep -vE '^. master$'
}
env_diff() {
env_init
env_sync_data
git diff --cached
git diff --cached --color
env_link_config
}