@@ -0,0 +1,5 @@
+#!/bin/bash -e
+
+if [[ $# -eq 1 ]]; then cd $1; fi
+git add $(git ls-untracked-sources)
@@ -0,0 +1,7 @@
+for f in $(git ls-files --others --exclude-standard); do
+ if [[ ! -x "$f" ]]; then echo $f; fi
+done
@@ -0,0 +1,8 @@
+REPO=$(basename $(pwd))
+TIME=$(date -Iseconds)
+git add-untracked-sources
+git commit -a -m "Updates for $REPO at $TIME"