Pull script+example push

This commit is contained in:
Jon Herron 2022-10-12 11:07:01 -04:00
parent 08000bb187
commit 4fc450e6d9
2 changed files with 17 additions and 1 deletions

View File

@ -1 +1,7 @@
# spiff-arena
# spiff-arena
git subtree push --prefix=spiffworkflow-frontend git@github.com:sartography/spiffworkflow-frontend.git add_md_file

10
bin/pull-subtrees Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
for subtree in "SpiffWorkflow" \
"spiffworkflow-backend" \
"spiffworkflow-frontend" \
"flask-bpmn" \
"bpmn-js-spiffworkflow"
do
git subtree pull --prefix=$subtree git@github.com:sartography/$subtree.git main --squash
done