From: Chris Koeritz Date: Thu, 25 Jul 2013 22:36:41 +0000 (-0500) Subject: updated for flag git wanted me to add. X-Git-Tag: 2.140.90~962 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=11c025412b185935e3a54cadfe8a74607d37f34d;p=feisty_meow.git updated for flag git wanted me to add. --- diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index a4236302..daaa0924 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -106,7 +106,7 @@ function do_checkin() elif [ -d ".svn" ]; then svn ci . ; elif [ -d ".git" ]; then # snag all new files. not to everyone's liking. - git add . + git add --all . # tell git about all the files and get a check-in comment. git commit . # upload the files to the server so others can see them.