Show lightweight tag pointing to a commit
Tests ability to inspect a lightweight tag pointing to a commit. Evaluates tag-to-commit resolution.
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 content' > app.txt - 05
git add app.txt - 06
git commit -m 'Release version 1.0' - 07
git tag v1.0.0 - 08
echo 'v2 content' > app.txt - 09
git add app.txt - 10
git commit -m 'Release version 1.1' - 11
git tag v1.1.0
Prompt
Using git show, what is the commit message of the commit that the lightweight tag 'v1.0.0' points to? Output ONLY the commit message, nothing else.
Expected
Release version 1.0
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
Release version 1.0
Release version 1.0
JSON Schema
Structured Output
(raw) { "commit_message": "Release version 1.0" }
Release version 1.0
Release version 1.0
JSON Schema
Structured Output
(raw) { "commit_message": "Release version 1.0" }
Release version 1.0
Release version 1.0
JSON Schema
Structured Output
(raw) {"commit_message": "Release version 1.0"}
Release version 1.0
Release version 1.0
JSON Schema
Structured Output
(raw) {
"commit_message": "Release version 1.0"
}
Release version 1.0
Release version 1.0
JSON Schema
Structured Output
(raw) {
"commit_message": " Release version 1.0"
}
Release version 1.0
Release version 1.0
JSON Schema
Structured Output
(raw) {"commit_message": "Release version 1.0"}
Release version 1.0
Release version 1.0
JSON Schema
Structured Output
(raw) {"commit_message":"Release version 1.0"}