summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xpusha5
1 files changed, 5 insertions, 0 deletions
diff --git a/pusha b/pusha
new file mode 100755
index 0000000..443c62b
--- /dev/null
+++ b/pusha
@@ -0,0 +1,5 @@
+#! /bin/bash
+for remote in $(git remote -v | cut -f 1 | sort | uniq)
+do
+ git push $remote
+done