From: Silvio Rhatto Date: Wed, 6 Dec 2017 12:54:32 +0000 (-0200) Subject: Adds status command X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a6a0bef84eaa95dcf6f9e3476b333092bf579e8f;p=metadot.git Adds status command --- diff --git a/metadot b/metadot index 0b449a7..d60f968 100755 --- a/metadot +++ b/metadot @@ -326,6 +326,11 @@ function metadot_deps_bundle { __metadot_process_bundle $* } +# Repository status +function metadot_status { + ( cd $DOT && git status --ignored && git submodule foreach --recursive git status --ignored ) +} + # Parsing if [ -z "$OPT" ]; then metadot_usage @@ -363,6 +368,8 @@ elif [ "$OPT" == "fetch" ]; then metadot_fetch elif [ "$OPT" == "merge" ]; then metadot_merge +elif [ "$OPT" == "status" ]; then + metadot_status else metadot_usage fi