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