1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-15 03:33:52 +02:00

env: colorize git output

SVN-Revision: 30602
This commit is contained in:
Florian Fainelli 2012-02-16 19:24:34 +00:00
parent e4d39271b0
commit e50315d61c

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
}