20 lines
752 B
Markdown
20 lines
752 B
Markdown
# L04 · Git Basics I — status, add and commit
|
|
|
|
Karta rozdziela trzy stany pracy Git: plik roboczy, indeks i commit. Każdy
|
|
task tworzy nowe repozytorium tymczasowe i ustawia tożsamość tylko lokalnie.
|
|
|
|
| Task | Dowód PASS |
|
|
| --- | --- |
|
|
| `task01_init_repository` | repo na gałęzi `main`, brak commitów, lokalny autor |
|
|
| `task02_status_and_add` | przejście `?? notes.txt` → `A notes.txt` |
|
|
| `task03_first_commit` | jeden commit `add lesson notes`, czysty worktree |
|
|
|
|
```bash
|
|
stemctl card use console-bash L04
|
|
stemctl test native-amd64 console-bash L04 1
|
|
stemctl test native-amd64 console-bash L04 2
|
|
stemctl debug native-amd64 console-bash L04 3
|
|
```
|
|
|
|
Wyniki wpisz do [answers/git-basics-1-evidence.md](answers/git-basics-1-evidence.md).
|