Baseline Repository
These commands set up the repo before the model sees the prompt. They define the starting file structure, staged changes, and Git history.
- 01
git init - 02
git config user.email 'test@test.com' - 03
git config user.name 'Test User' - 04
echo 'v1' > app.txt - 05
git add app.txt - 06
git commit -m 'v1' - 07
git tag v1.0 - 08
echo 'v2' > app.txt - 09
git add app.txt - 10
git commit -m 'v2' - 11
git tag v10.0 - 12
echo 'v3' > app.txt - 13
git add app.txt - 14
git commit -m 'v3' - 15
git tag v2.0 - 16
echo 'v4' > app.txt - 17
git add app.txt - 18
git commit -m 'v4' - 19
git tag v1.10
Prompt
List all tags sorted by version number in ascending order. Output ONLY the git command, nothing else.
Expected
git tag -l --sort=version:refname
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
git tag --sort=version:refname
git tag --sort=version:refname
JSON Schema
Structured Output
(raw) {
"command": "git tag --sort=version:refname"
}
git tag --sort=version:refname
git tag --sort=version:refname
JSON Schema
Structured Output
(raw) {
"command": "git tag --sort=version:refname"
}
```bash
git tag --sort=version:refname
```
git tag -l | sort -V
JSON Schema
Structured Output
(raw) {"command": "git tag -l | sort -V"}
git tag --list --sort=v:refname
git tag --sort=v
JSON Schema
Structured Output
(raw) {
"command": "git tag --sort=v"
}
git tag --list --sort=-v:refname | sort -t. -k1,1n -k2,2n -k3,3n
git tag --list --sort=-v:refname | sed 's/.*\(v\?[0-9.]*\).*/\1/' | sort -V
JSON Schema
Structured Output
(raw) {
"command": "git tag --list --sort=-v:refname | sed 's/.*\\(v\\?[0-9.]*\\).*/\\1/' | sort -V"
}
git tag --sort=version:refname
git tag | sort -V
JSON Schema
Structured Output
(raw) {"command": "git tag | sort -V"}
git tag -l | sort -V
git tag sort -V
JSON Schema
Structured Output
(raw) {
"command": "git tag sort -V"
}