#!/bin/sh
branch=$(git rev-parse --abbrev-ref HEAD)
for remote in $(git remote); do
  git push "$remote" "$branch"
done
