@@ -3,6 +3,9 @@ set -e
path="${GIT_PREFIX%/}"
while read repo branch subdir; do
+ if [ "${repo:0:1}" = "#" ]; then
+ continue
+ fi
if [ "${subdir}" = "/" ]; then
git subtree pull -P "${path}" "${repo}" "${branch}" -m "Merge ${path} from ${repo}"
else