История изменений
Исправление ZuBB, (текущая версия) :
вот поточный код. мож еще чего подскажете?
#!/usr/bin/env bash
for repo in `vcsh list`; do
vcsh status "${repo}" | while read line; do
filePath=`echo $line | sed 's/^M //'`
message="autoupdate of '`echo $filePath | sed 's/\.\.\///g'`'"
vcsh run "${repo}" git commit "${filePath}" -m "${message}"
done
# https://github.com/RichiH/vcsh/issues/157
vcsh run "${repo}" git push -q;
done
Исходная версия ZuBB, :
вот поточный код. мож еще чего подскажете?
#!/usr/bin/env bash
for repo in `vcsh list`; do
vcsh status "${repo}" | while read line; do
filePath=`echo $line | sed 's/^M //'`
message="autoupdate of '`echo $filePath | sed 's/\.\.\///g'`'"
vcsh run "${repo}" git commit "${filePath}" -m "${message}"
done
# https://github.com/RichiH/vcsh/issues/157
vcsh run "${repo}" git push -q;
done