Commit b88b3b64dfd2b64d492de20d736bdc2e34aaef0b
1 parent
6a89980a
更新.gitignore文件,修正Windows路径排除规则,以确保在不同操作系统上的兼容性和文件管理的有效性。
Showing
1 changed file
with
3 additions
and
3 deletions
.gitignore
| ... | ... | @@ -279,6 +279,6 @@ __pycache__/ |
| 279 | 279 | |
| 280 | 280 | # 排除无效的 Windows 风格路径(在 Mac 上出现) |
| 281 | 281 | # 排除类似 /D:/wesley/project/git/antis-disk/netcore/src/Modular 的无效路径 |
| 282 | -/D:* | |
| 283 | -/D:/** | |
| 284 | -/D:/**/* | |
| 285 | 282 | \ No newline at end of file |
| 283 | +D// | |
| 284 | +D//** | |
| 285 | +D//**/* | |
| 286 | 286 | \ No newline at end of file | ... | ... |