返回 Tools

Git Challenge

教學挑戰:僅能用 UI 操作,CLI 已關閉。每題多步驟,限時 3 分鐘。

Task 1

切到 develop 並開 feature

先切換到 develop,再建立並切換到 feature/notes。

180s
剩餘時間

Git Challenge — Task 1

HEAD → main
Jump to:
GraphDescriptionCommitDate
release/1.0.0v1.0.0-rc.1Bump version for release/1.0.0
c65b8788 Feb
feature/checkoutValidate checkout payload
b1702047 Feb
Start feature/checkout
5bf135f6 Feb
developDocument service name in health payload
bd19e5e6 Feb
Add cart service placeholder
5f2ae255 Feb
Start develop branch for integration
8fe44a14 Feb
HEADmainv0.9.1Merge hotfix/health-ts into main
e8e4e893 Feb
Hotfix: add health timestamp
638f6b93 Feb
v0.9.0Add health endpoint stub
83bf0f22 Feb
Initial commit: project scaffold
dcb74f81 Feb
src/health.ts
A

Merge hotfix/health-ts into main

Commit:
e8e4e893
Parents:
83bf0f2f, 638f6b96
Author:
Alex Chen
Date:
3 February 2026 at 9:00:00
Labels:
HEAD main v0.9.1
src/health.ts
Hunk 1: Lines 1-3Reverse hunk
11 export function health() {
2- return { ok: true };
2+ return { ok: true, ts: Date.now() };
33 }