seed: curriculum content

This commit is contained in:
2026-05-07 14:32:44 +00:00
parent 9258534803
commit ec76f4f56b
100 changed files with 2846 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
# The Saver — make three commits.
#
# When this script runs, a fresh Git repo with identity already set
# is in your working directory. Make three commits, in this exact
# order:
#
# 1. Create a.txt containing "alpha". Commit message: "add alpha"
# 2. Create b.txt containing "beta". Commit message: "add beta"
# 3. Create c.txt containing "gamma". Commit message: "add gamma"
#
# Tools: echo, git add, git commit -m
# Your code here.