Spaces:
Running
Running
KaiWu commited on
Commit ·
67adaa5
1
Parent(s): ab26a21
chore: 停止在仓库中跟踪 inputs/,避免二进制入 git
Browse files- .gitignore 新增 inputs/ 规则
- 从索引移除 inputs/little-bird.png(本地保留)
- HF Spaces 拒绝二进制入 git 对象库,改由本地目录承载测试素材
- .gitignore +3 -0
.gitignore
CHANGED
|
@@ -22,6 +22,9 @@ env/
|
|
| 22 |
outputs/
|
| 23 |
data/
|
| 24 |
|
|
|
|
|
|
|
|
|
|
| 25 |
# OS and editor files
|
| 26 |
.DS_Store
|
| 27 |
.idea/
|
|
|
|
| 22 |
outputs/
|
| 23 |
data/
|
| 24 |
|
| 25 |
+
# Local test inputs (not tracked; HF Spaces rejects raw binaries)
|
| 26 |
+
inputs/
|
| 27 |
+
|
| 28 |
# OS and editor files
|
| 29 |
.DS_Store
|
| 30 |
.idea/
|