1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00

Refine push script

This commit is contained in:
winlin 2021-07-19 07:51:35 +08:00
parent 6c40419de7
commit 4ca433d3f8

View file

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