a502322188
손상된 .git 히스토리(missing tree)로 재초기화 후 작업트리 전체 커밋. .claude/ 만 제외(로컬 에이전트 설정). 구 저장소 백업(.git_corrupt_backup/) 포함. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["-j8"],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": ["$gcc"],
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"panel": "shared",
|
|
"clear": true
|
|
}
|
|
},
|
|
{
|
|
"label": "rebuild",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["rebuild", "-j8"],
|
|
"problemMatcher": ["$gcc"],
|
|
"presentation": {
|
|
"clear": true
|
|
}
|
|
},
|
|
{
|
|
"label": "clean",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["clean"]
|
|
},
|
|
{
|
|
"label": "flash",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["flash"],
|
|
"dependsOn": "build",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "erase",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["erase"],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "size",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"args": ["size"],
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|