summaryrefslogtreecommitdiff
path: root/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/gitpu10
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/gitpu b/.local/bin/gitpu
new file mode 100755
index 00000000..b77d8eab
--- /dev/null
+++ b/.local/bin/gitpu
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+for dir ; do
+ git -C "$dir" checkout master
+ git -C "$dir" pull upstream master
+ git -C "$dir" push
+ git -C "$dir" checkout fly
+ git -C "$dir" merge --no-edit master
+ git -C "$dir" push
+done