diff options
Diffstat (limited to 'clone-all-github')
-rwxr-xr-x | clone-all-github | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clone-all-github b/clone-all-github index 739f8db..2615516 100755 --- a/clone-all-github +++ b/clone-all-github @@ -1,5 +1,7 @@ #!/usr/bin/env bash +set -xe + USER=compromyse REPOS=$(curl https://api.github.com/users/$USER/repos 2>/dev/null) @@ -22,6 +24,8 @@ for i in $(seq 0 1 $(( $(echo $REPOS | jq length) - 1 ))); do done echo "$description" > description + echo 'git push github -f --mirror' > "hooks/post-receive" + chmod +x "hooks/post-receive" popd > /dev/null |