2
0

git.commit.sh 191 B

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