From 5b133a3fcfe1616411a8d62157c86c584a2b027a Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 15 Sep 2016 12:29:14 -0400 Subject: [PATCH] ha! now have support for finding non-checked-in files in git repositories for rev_report_new script. --- scripts/rev_control/version_control.sh | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.34.1