ha! now have support for finding non-checked-in files in git repositories for rev_re...
authorChris Koeritz <fred@gruntose.com>
Thu, 15 Sep 2016 16:29:14 +0000 (12:29 -0400)
committerChris Koeritz <fred@gruntose.com>
Thu, 15 Sep 2016 16:29:14 +0000 (12:29 -0400)
scripts/rev_control/version_control.sh

index b6ab0217f6f3c7f1001723841c27e4e0cbad9417..391497df5fe4bd316f71eea85221c41d752a65b5 100644 (file)
@@ -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