diff options
Diffstat (limited to 'util/git-push-all')
-rwxr-xr-x | util/git-push-all | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/git-push-all b/util/git-push-all new file mode 100755 index 0000000..ffa3ff5 --- /dev/null +++ b/util/git-push-all @@ -0,0 +1,6 @@ +#!/bin/sh +# git-push-all: Iterate through all git remotes, and push to each of them. + +for rem in $(git remote) ; do + git push "$rem" +done |