We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c57d70 commit 06232ecCopy full SHA for 06232ec
ent-branches.txt
@@ -0,0 +1,8 @@
1
+lab512a-loading-nf
2
+lab512b-nf-sharing
3
+lab512c-nf-routes
4
+lab512d-nf-routes-solution
5
+lab512e-nf-loading-components
6
+lab512f-nf-multi-starter
7
+lab512g-nf-multi-solution
8
+lab512h-nf-angular-elements
update.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+set -e
+BRANCH_LIST="ent-branches.txt"
+FIXED_COMMIT="a2edb30e8fa08bfd" # der zu cherry-pickende Commit
+while read -r BRANCH; do
9
+ if [[ -z "$BRANCH" ]]; then
10
+ continue
11
+ fi
12
13
+ echo "===> Wechsel zu $BRANCH"
14
+ git checkout "$BRANCH"
15
16
+ echo "===> Cherry-Pick von $FIXED_COMMIT"
17
+ git cherry-pick "$FIXED_COMMIT"
18
19
+done < "$BRANCH_LIST"
20
21
+echo "✅ Alle Cherry-Picks abgeschlossen."
0 commit comments