From a6a0bef84eaa95dcf6f9e3476b333092bf579e8f Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 6 Dec 2017 10:54:32 -0200 Subject: Adds status command --- metadot | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- cgit v1.2.3