diff --git a/trunk/scripts/git.commit.sh b/trunk/scripts/git.commit.sh index fd83d907b..653a09a04 100755 --- a/trunk/scripts/git.commit.sh +++ b/trunk/scripts/git.commit.sh @@ -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