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:
parent
6c40419de7
commit
4ca433d3f8
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue