feat(L07): add Git rebase and conflicts card

This commit is contained in:
user
2026-07-21 18:12:34 +02:00
commit f1528193ca
38 changed files with 7165 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
root="${CARD_ROOT:-$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)}"; task="${1:?task required}"
case "$task" in task01_rebase_deliberately|task02_resolve_conflict|task03_verify_linear_history) ;; *) exit 2 ;; esac
exec env CARD_ROOT="$root" "$root/src/tasks/$task.sh"