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 9bc5202 commit dd991e4Copy full SHA for dd991e4
update.sh
@@ -13,14 +13,13 @@ while read -r BRANCH; do
13
echo "===> Wechsel zu $BRANCH"
14
git checkout "$BRANCH"
15
16
- # Prüfen, ob Commit schon im Branch enthalten ist
17
- if git cherry "$BRANCH" "$FIXED_COMMIT" | grep -q '^-'; then
18
- echo "⏩ Commit bereits in $BRANCH – überspringe."
19
- continue
20
- fi
21
-
22
echo "===> Cherry-Pick von $FIXED_COMMIT"
23
- git cherry-pick "$FIXED_COMMIT"
+ # git cherry-pick "$FIXED_COMMIT"
+ cp /tmp/package.json package.json
+ cp /tmp/pre-commit .husky/pre-commit
+ git add .
+ git commit -m "chore(ent): update to nx 21 and ng 20"
+
24
25
done < "$BRANCH_LIST"
26
0 commit comments