From 18bbd07c12dde2b800858491be44c1400135295a Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Thu, 27 Apr 2023 11:45:37 -0600 Subject: [PATCH] push-subtrees --- push-subtrees.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 push-subtrees.sh diff --git a/push-subtrees.sh b/push-subtrees.sh new file mode 100644 index 00000000..bd3262a6 --- /dev/null +++ b/push-subtrees.sh @@ -0,0 +1,14 @@ + +#! /bin/bash +# + +git subtree push --prefix=kiss git@github.com:kiss-lang/kiss.git main + +libs=$(ls libraries) + +for lib in $libs; do + if [ $lib = "_deprecated" ]; then continue; fi + if [ $lib = "_standalone" ]; then continue; fi + + git subtree push --prefix=projects/$lib git@github.com:kiss-lang/$lib.git main +done