| git add .gitattributes | |
| git commit -m "Add LFS tracking for .arrow and other large files" | |
| git push | |
| # 5. 复制你的 mice_final 文件夹内容 | |
| cp -r ../mice_final/* ./ | |
| # 6. 检查哪些文件会通过 LFS 上传 | |
| git lfs ls-files | |
| # 7. 添加并提交所有文件 | |
| git add . | |
| git commit -m "Upload mice_final dataset with .arrow files" | |
| # 8. 推送到仓库 | |
| git push | |