diff --git a/.githooks/post-push b/.githooks/post-push new file mode 100755 index 0000000..15a8ae7 --- /dev/null +++ b/.githooks/post-push @@ -0,0 +1,5 @@ +#!/bin/sh +branch=$(git rev-parse --abbrev-ref HEAD) +for remote in $(git remote); do + git push "$remote" "$branch" +done