From: Chris Koeritz Date: Thu, 15 Sep 2016 16:29:14 +0000 (-0400) Subject: ha! now have support for finding non-checked-in files in git repositories for rev_re... X-Git-Tag: 2.140.90~451 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;ds=inline;h=5b133a3fcfe1616411a8d62157c86c584a2b027a;p=feisty_meow.git ha! now have support for finding non-checked-in files in git repositories for rev_report_new script. --- diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index b6ab0217..391497df 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -166,6 +166,10 @@ function do_report_new if [ -d ".svn" ]; then # this action so far only makes sense and is needed for svn. bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo + retval=$? + elif [ -d ".git" ]; then + git status -u + retval=$? fi popd &>/dev/null