kunlang_video/external/srs-server-5.0-r3/trunk/scripts/git.commit.sh
2026-05-09 10:51:10 +08:00

9 lines
191 B
Bash
Executable File

#!/bin/bash
for file in $(git remote -v|grep -v https|grep -v gb28181|grep -v tmp|grep push|awk '{print $1}'); do
echo "";
echo "git push $file $@";
git push $file $@;
done