aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeongJae Park <sj@kernel.org>2024-04-20 11:36:49 -0700
committerSeongJae Park <sj@kernel.org>2024-04-20 11:36:49 -0700
commite6cf97bd6b2a16aaf6bf75c058fdf8c5b65bcfa9 (patch)
treec3651c5e4aa9eb5b775a414e1b480557a5762d2b
parent1d7b684d2f18040c965d151f2fabeca340f9ea54 (diff)
downloaddamon-hack-e6cf97bd6b2a16aaf6bf75c058fdf8c5b65bcfa9.tar.gz
damo: Add a file for branches pushing
Signed-off-by: SeongJae Park <sj@kernel.org>
-rwxr-xr-xdamo/push_branches.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/damo/push_branches.sh b/damo/push_branches.sh
new file mode 100755
index 0000000..e9260a1
--- /dev/null
+++ b/damo/push_branches.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+echo "ensure gpg password"
+bindir=$(dirname "$0")
+"$bindir/../ensure_gpg_password.sh"
+
+for remote in upstream downstream korg
+do
+ echo "$remote"
+ git push "$remote" next
+done