diff --git a/post-receive b/post-receive deleted file mode 100755 index 902ce20..0000000 --- a/post-receive +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# Mirror all branches to GitHub on push - -GITHUB_REMOTE=github -BRANCHES=$(git branch -r | grep -v '\->' | sed 's/origin\///') - -for branch in $BRANCHES; do - git push $GITHUB_REMOTE $branch -done